- [FIX] posible leak al carregar el bmp de la font

- [FIX] arreglats un milló de warnings
This commit is contained in:
Raimon @ quifisraimon
2026-09-18 10:51:54 +02:00
parent 791bd7efbd
commit a25c070b07
5 changed files with 24 additions and 15 deletions
+2 -1
View File
@@ -26,13 +26,14 @@ int main(int argc, char *argv[]) {
wait = 16;
if (atari2600::is_paused()) SDL_WaitEventTimeout(NULL, 1000);
while (SDL_PollEvent(&e)) {
bool result = true;
//bool result = true;
if (e.type == SDL_EVENT_QUIT) { atari2600::quit(); break; }
if (e.type == SDL_EVENT_KEY_DOWN) {
if (atari2600::is_paused()) {
switch (e.key.scancode) {
case SDL_SCANCODE_F10: atari2600::step(); m6502debugger::refresh(); break;
default: break;
}
}
}