Frontend: Add a powered-off window/welcome screen

This commit is contained in:
Connor McLaughlin
2019-10-20 20:37:21 +10:00
parent 884378045d
commit 0e6d1d5629
9 changed files with 8103 additions and 479 deletions

View File

@ -49,7 +49,6 @@ bool HostInterface::InitializeSystem(const char* filename, const char* exp1_file
m_system->SetExpansionROM(exp1_filename);
// Resume execution.
m_running = true;
return true;
}

View File

@ -33,5 +33,5 @@ protected:
std::unique_ptr<AudioStream> m_audio_stream;
std::unique_ptr<System> m_system;
bool m_running = false;
bool m_running = true;
};