Address feedback

This commit is contained in:
Henrik Rydgård 2023-07-15 22:22:06 +02:00
parent 5c654340cb
commit 04351a18f6
2 changed files with 6 additions and 3 deletions

View file

@ -257,7 +257,11 @@ KeyEventResult UnsyncKeyEvent(const KeyInput &key, ViewGroup *root) {
retval = KeyEventResult::PASS_THROUGH;
break;
default:
retval = KeyEventResult::ACCEPT;
if (!(key.flags & KEY_IS_REPEAT)) {
// If a repeat, we follow what KeyEventToFocusMoves set it to.
// Otherwise we signal that we used the key, always.
retval = KeyEventResult::ACCEPT;
}
break;
}
return retval;

View file

@ -602,8 +602,7 @@ handleELF:
info_->pic1.dataLoaded = ReadFileToString(&umd, "/PSP_GAME/PIC1.PNG", &info_->pic1.data, nullptr);
}
if (info_->wantFlags & GAMEINFO_WANTSND) {
ReadFileToString(&umd, "/PSP_GAME/SND0.AT3", &info_->sndFileData, nullptr);
info_->sndDataLoaded = true;
info_->sndDataLoaded = ReadFileToString(&umd, "/PSP_GAME/SND0.AT3", &info_->sndFileData, nullptr);
}
}