Set ROM launcher framerate to 30fps. There's no need for it to be

a full 60fps, and it reduces CPU usage up to 30% on some systems.
This commit is contained in:
Stephen Anthony 2017-03-08 18:13:01 -03:30
parent e02166092d
commit 2057b1421c
2 changed files with 6 additions and 4 deletions

View File

@ -45,6 +45,11 @@
this bug has only ever occurred in Windows XP, but it's been there
since Stella 4.1.
* When in 'ROM launcher mode', Stella now uses less CPU time.
* Added ROM properties for D.K. VCS homebrew ROM, thanks to Andreas
Dietrich.
* For the Linux/UNIX port:
- The settings directory now uses the XDG Base Directory Specification.
In most cases, this means that your files will now be stored in
@ -66,9 +71,6 @@
cd ~/Library/Preferences
mv net.sourceforge.Stella.plist Stella-emu.plist
* Added ROM properties for D.K. VCS homebrew ROM, thanks to Andreas
Dietrich.
* Updated internal ROM properties database to ROM-Hunter version 12
(thanks go to RomHunter for his tireless research in this area).
Related to this, updated the snapshot collection.

View File

@ -425,7 +425,7 @@ bool OSystem::createLauncher(const string& startdir)
myLauncher->reStack();
myFrameBuffer->setCursorState();
setFramerate(60);
setFramerate(30);
resetLoopTiming();
status = true;
}