From e33d0d6b5def14702e8d133c2a175363da8be654 Mon Sep 17 00:00:00 2001 From: JoseAaronLopezGarcia Date: Sat, 21 Dec 2024 22:41:27 +0100 Subject: [PATCH] cleanup --- extras/menus/arkMenu/src/gamemgr.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/extras/menus/arkMenu/src/gamemgr.cpp b/extras/menus/arkMenu/src/gamemgr.cpp index bd8a6824..efbe06cf 100644 --- a/extras/menus/arkMenu/src/gamemgr.cpp +++ b/extras/menus/arkMenu/src/gamemgr.cpp @@ -13,8 +13,6 @@ #include "lang.h" #include "texteditor.h" -extern int sctrlKernelMsIsEf(); - static GameManager* self = NULL; static bool loadingData = false; @@ -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(){