1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-21 12:27:27 +03:00

Drop GP2X platform support.

The GP2X build was unused and totally broken.
This commit is contained in:
Paul Cercueil
2012-06-14 23:45:57 +02:00
parent 374371c1d2
commit 9263c782e7
15 changed files with 7 additions and 461 deletions

View File

@@ -56,7 +56,6 @@ bool SettingsDialog::exec() {
bool close = false, ts_pressed = false;
uint i, sel = 0, firstElement = 0;
voices[sel]->adjustInput();
const int topBarHeight = gmenu2x->skinConfInt["topBarHeight"];
SDL_Rect clipRect = {
@@ -146,13 +145,11 @@ bool SettingsDialog::exec() {
sel -= 1;
}
gmenu2x->setInputSpeed();
voices[sel]->adjustInput();
break;
case InputManager::DOWN:
sel += 1;
if (sel>=voices.size()) sel = 0;
gmenu2x->setInputSpeed();
voices[sel]->adjustInput();
default:
break;
}