0x004BFBE8
| 477 | |
| 478 | // 0x004BFBE8 |
| 479 | static void onDropdown(Window& self, WidgetIndex_t wi, [[maybe_unused]] const WidgetId id, int16_t item_index) |
| 480 | { |
| 481 | switch (wi) |
| 482 | { |
| 483 | case Widx::screen_mode_btn: |
| 484 | screenModeDropdown(self, item_index); |
| 485 | break; |
| 486 | case Widx::display_resolution_btn: |
| 487 | resolutionDropdown(self, item_index); |
| 488 | break; |
| 489 | case Widx::frame_limit_btn: |
| 490 | frameLimitDropdown(self, item_index); |
| 491 | break; |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | // 0x004C01F5 |
| 496 | static void onUpdate(Window& self) |
nothing calls this directly
no test coverage detected