mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
`config` was being consumed much too early before it has a chance to call `load`. This caused GPU to read weird uninitialized data, and then `load` called, and then further initialization to occur based on default data and the data inside of `config.toml`. `EmulatorConfig` needs to be loaded in first before any sort of initialization happens, by adding a new constructor so that it can be initialized sooner.
14 lines
No EOL
414 B
C++
14 lines
No EOL
414 B
C++
#pragma once
|
|
#include <filesystem>
|
|
|
|
#include "renderer.hpp"
|
|
|
|
// Remember to initialize every field here to its default value otherwise bad things will happen
|
|
struct EmulatorConfig {
|
|
bool shaderJitEnabled = false;
|
|
RendererType rendererType = RendererType::OpenGL;
|
|
|
|
EmulatorConfig(const std::filesystem::path& path);
|
|
void load(const std::filesystem::path& path);
|
|
void save(const std::filesystem::path& path);
|
|
}; |