o irq button to bsnes menu

o trigger irq from bsnes engine
o add visual feedback in snes poc
This commit is contained in:
David Voswinkel
2009-05-20 00:45:44 +02:00
parent 5dd4904f9c
commit 8929a96e6e
8 changed files with 33 additions and 6 deletions

View File

@@ -154,6 +154,15 @@ void Utility::modifySystemState(system_state_t state) {
showMessage("System was reset.");
} break;
case Irq: {
if(cartridge.loaded() == false || application.power == false) break;
application.pause = false;
snes.irq();
showMessage("Irq was send.");
} break;
}
winMain->syncUi();