mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-20 07:37:01 +00:00
support saving GPU captures to a file
This commit is contained in:
parent
1d8806cf06
commit
9a61e81715
6 changed files with 69 additions and 0 deletions
|
|
@ -336,6 +336,7 @@ void CemuConfig::Load(XMLConfigParser& parser)
|
|||
crash_dump = debug.get("CrashDumpUnix", crash_dump);
|
||||
#endif
|
||||
gdb_port = debug.get("GDBPort", 1337);
|
||||
gpu_capture_dir = debug.get("GPUCaptureDir", "");
|
||||
|
||||
// input
|
||||
auto input = parser.get("Input");
|
||||
|
|
@ -537,6 +538,7 @@ void CemuConfig::Save(XMLConfigParser& parser)
|
|||
debug.set("CrashDumpUnix", crash_dump.GetValue());
|
||||
#endif
|
||||
debug.set("GDBPort", gdb_port);
|
||||
debug.set("GPUCaptureDir", gpu_capture_dir.GetValue());
|
||||
|
||||
// input
|
||||
auto input = config.set("Input");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue