Frontend: Add pause support

This commit is contained in:
Connor McLaughlin
2019-10-27 21:22:33 +10:00
parent 4e6596adfb
commit 21f555cf8f
4 changed files with 59 additions and 27 deletions

View File

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

View File

@ -11,6 +11,8 @@ struct Settings
{
Settings();
bool start_paused = false;
GPURenderer gpu_renderer = GPURenderer::HardwareOpenGL;
u32 gpu_resolution_scale = 1;
u32 max_gpu_resolution_scale = 1;