MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / GUI_Button_Load_Up

Method GUI_Button_Load_Up

Source/GUI_Element.cpp:1349–1355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1347}
1348
1349void cFodder::GUI_Button_Load_Up() {
1350 mGUI_Select_File_CurrentIndex -= (mGUI_Select_File_ShownItems - 1);
1351 if (mGUI_Select_File_CurrentIndex < 0)
1352 mGUI_Select_File_CurrentIndex = 0;
1353
1354 mGUI_SaveLoadAction = 3;
1355}
1356
1357void cFodder::GUI_Button_Load_Down() {
1358 mGUI_Select_File_CurrentIndex += (mGUI_Select_File_ShownItems - 1);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected