| 1338 | |
| 1339 | |
| 1340 | void cFodder::GUI_Button_Load_MouseWheel() { |
| 1341 | if (mMouse_EventLastWheel.mY > 0) { |
| 1342 | GUI_Button_Load_Up(); |
| 1343 | } |
| 1344 | else if (mMouse_EventLastWheel.mY < 0) { |
| 1345 | GUI_Button_Load_Down(); |
| 1346 | } |
| 1347 | } |
| 1348 | |
| 1349 | void cFodder::GUI_Button_Load_Up() { |
| 1350 | mGUI_Select_File_CurrentIndex -= (mGUI_Select_File_ShownItems - 1); |
nothing calls this directly
no outgoing calls
no test coverage detected