mirror of https://github.com/stella-emu/stella.git
Event mappings weren't being saved when exiting the ROM launched from
the commandline (different code paths were taken). git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2782 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
e3f1892351
commit
ed49f9ba1d
|
@ -56,6 +56,9 @@
|
||||||
- Added Startup notification protocol patch to the .desktop
|
- Added Startup notification protocol patch to the .desktop
|
||||||
file from Dan Fandrich.
|
file from Dan Fandrich.
|
||||||
|
|
||||||
|
* Fixed bug when using event remapping; it was only working when
|
||||||
|
launching a ROM from the launcher, not in standalone mode.
|
||||||
|
|
||||||
* Added properties database info for "Princess Rescue" ROM.
|
* Added properties database info for "Princess Rescue" ROM.
|
||||||
|
|
||||||
* Updated included PNG library to latest stable version.
|
* Updated included PNG library to latest stable version.
|
||||||
|
|
|
@ -1085,7 +1085,7 @@ void EventHandler::handleEvent(Event::Type event, int state)
|
||||||
myOSystem->createLauncher();
|
myOSystem->createLauncher();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
myOSystem->quit();
|
handleEvent(Event::Quit, 1);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue