* * rct2: 0x006E79FB */
| 146 | * rct2: 0x006E79FB |
| 147 | */ |
| 148 | static void WindowViewportWheelInput(WindowBase& w, int32_t wheel) |
| 149 | { |
| 150 | if (gLegacyScene == LegacyScene::trackDesignsManager || gLegacyScene == LegacyScene::titleSequence) |
| 151 | return; |
| 152 | |
| 153 | if (wheel < 0) |
| 154 | Windows::WindowZoomIn(w, true); |
| 155 | else if (wheel > 0) |
| 156 | Windows::WindowZoomOut(w, true); |
| 157 | } |
| 158 | |
| 159 | static bool isSpinnerGroup(WindowBase& w, WidgetIndex index, WidgetType buttonType) |
| 160 | { |
no test coverage detected