mirror of https://github.com/stella-emu/stella.git
Minor refactoring.
This commit is contained in:
parent
b0b807407a
commit
c0aa5c83f5
|
@ -3,3 +3,4 @@ config.mak
|
|||
src/**/*/.deps
|
||||
src/**/*.o
|
||||
stella
|
||||
*.diff
|
||||
|
|
|
@ -57,8 +57,7 @@
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
OSystem::OSystem()
|
||||
: myConsole(nullptr),
|
||||
myLauncherUsed(false),
|
||||
: myLauncherUsed(false),
|
||||
myQuitLoop(false)
|
||||
{
|
||||
// Calculate startup time
|
||||
|
@ -227,8 +226,7 @@ void OSystem::setBaseDir(const string& basedir)
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void OSystem::setConfigFile(const string& file)
|
||||
{
|
||||
FilesystemNode node(file);
|
||||
myConfigFile = node.getPath();
|
||||
myConfigFile = FilesystemNode(file).getPath();
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
@ -441,10 +439,10 @@ bool OSystem::createLauncher(const string& startdir)
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
string OSystem::getROMInfo(const FilesystemNode& romfile)
|
||||
{
|
||||
string md5, type, id;
|
||||
unique_ptr<Console> console;
|
||||
try
|
||||
{
|
||||
string md5, type, id;
|
||||
console = openConsole(romfile, md5, type, id);
|
||||
}
|
||||
catch(const runtime_error& e)
|
||||
|
|
|
@ -534,7 +534,8 @@ void GameInfoDialog::saveConfig()
|
|||
|
||||
// Display properties
|
||||
myGameProperties.set(Display_Format, myFormat->getSelectedTag().toString());
|
||||
myGameProperties.set(Display_YStart, myYStartLabel->getLabel());
|
||||
myGameProperties.set(Display_YStart, myYStartLabel->getLabel() == "Auto" ? "0" :
|
||||
myYStartLabel->getLabel());
|
||||
myGameProperties.set(Display_Height, myHeightLabel->getLabel() == "Auto" ? "0" :
|
||||
myHeightLabel->getLabel());
|
||||
myGameProperties.set(Display_Phosphor, myPhosphor->getSelectedTag().toString());
|
||||
|
|
Loading…
Reference in New Issue