Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAaronLopezGarcia committed Dec 21, 2024
1 parent 9e05ccd commit e33d0d6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions extras/menus/arkMenu/src/gamemgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
#include "lang.h"
#include "texteditor.h"

extern int sctrlKernelMsIsEf();

static GameManager* self = NULL;

static bool loadingData = false;
Expand Down Expand Up @@ -356,15 +354,15 @@ void GameManager::moveRight(){
void GameManager::moveUp(){
if (selectedCategory < 0)
return;
this->categories[this->selectedCategory]->moveUp();
scroll.tmp = scroll.x; // reset text scroll
this->categories[this->selectedCategory]->moveUp();
}

void GameManager::moveDown(){
if (selectedCategory < 0)
return;
this->categories[this->selectedCategory]->moveDown();
scroll.tmp = scroll.x; // reset text scroll
this->categories[this->selectedCategory]->moveDown();
}

void GameManager::stopFastScroll(){
Expand Down

0 comments on commit e33d0d6

Please sign in to comment.