1
0
mirror of https://github.com/fruit-bat/pico-zxspectrum.git synced 2025-04-19 00:04:01 +03:00

bobvgalcd

This commit is contained in:
Phil 2025-01-12 16:33:12 +00:00
parent 1142c2cf6a
commit 099bf06895
2 changed files with 3 additions and 6 deletions

View File

@ -49,12 +49,12 @@ const char* PicoOnScreenKeyboard::getKeyboardLine(uint8_t which) {
int Pos=0;
for (int i=0; i < 10; i++) {
Pos+=sprintf(Buff+Pos," %s ",Line[which][i].Name);
Pos+=sprintf(Buff+Pos," %s",Line[which][i].Name);
}
//Selected symbol
if(which==_y) {
Buff[_x*5]='[';
Buff[_x*5+4]=']';
Buff[_x*4]='[';
Buff[_x*4+4]=']';
}
return Buff;
}

View File

@ -363,7 +363,6 @@ int main() {
picoRootWin.snapLoaded([&](const char *name) {
showMenu = false;
toggleMenu = false;
setMenuState(showMenu);
}
);
// TZX tape option handlers
@ -378,7 +377,6 @@ int main() {
picoRootWin.showTzxOptions();
showMenu = true;
toggleMenu = false;
setMenuState(showMenu);
}
);
picoRootWin.tzxOption(
@ -386,7 +384,6 @@ int main() {
zxSpectrum.tzxOption(option);
showMenu = false;
toggleMenu = false;
setMenuState(showMenu);
}
);
snapFileLoop.set(&picoRootWin);