mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
Add the override config option.
I hate the config code, but now is not the time to fix it...
This commit is contained in:
@ -97,6 +97,15 @@ enum Hotkey
|
||||
NUM_HOTKEYS,
|
||||
};
|
||||
|
||||
enum GPUDeterminismMode
|
||||
{
|
||||
GPU_DETERMINISM_AUTO,
|
||||
GPU_DETERMINISM_NONE,
|
||||
// This is currently the only mode. There will probably be at least
|
||||
// one more at some point.
|
||||
GPU_DETERMINISM_FAKE_COMPLETION,
|
||||
};
|
||||
|
||||
struct SCoreStartupParameter
|
||||
{
|
||||
// Settings
|
||||
@ -200,6 +209,10 @@ struct SCoreStartupParameter
|
||||
EBootType m_BootType;
|
||||
|
||||
std::string m_strVideoBackend;
|
||||
std::string m_strGPUDeterminismMode;
|
||||
|
||||
// set based on the string version
|
||||
GPUDeterminismMode m_GPUDeterminismMode;
|
||||
|
||||
// files
|
||||
std::string m_strFilename;
|
||||
|
Reference in New Issue
Block a user