mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 04:29:13 +12:00
Bonk
This commit is contained in:
parent
31d1c6ff3f
commit
c339c7d1c5
3 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,7 @@
|
|||
#include "config.hpp"
|
||||
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
|
||||
#include "helpers.hpp"
|
||||
#include "toml.hpp"
|
||||
|
@ -68,7 +69,7 @@ void EmulatorConfig::save(const std::filesystem::path& path) {
|
|||
}
|
||||
|
||||
data["GPU"]["EnableShaderJIT"] = shaderJitEnabled;
|
||||
data["GPU"]["Renderer"] = Renderer::typeToString(rendererType);
|
||||
data["GPU"]["Renderer"] = std::string(Renderer::typeToString(rendererType));
|
||||
|
||||
std::ofstream file(path, std::ios::out);
|
||||
file << data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue