Panda3DS/include/config.hpp
2023-11-28 12:08:25 +02:00

25 lines
No EOL
613 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 = true;
bool discordRpcEnabled = false;
RendererType rendererType = RendererType::OpenGL;
bool sdCardInserted = true;
bool sdWriteProtected = false;
bool usePortableBuild = false;
bool chargerPlugged = true;
// Default to 3% battery to make users suffer
int batteryPercentage = 3;
std::filesystem::path filePath;
EmulatorConfig(const std::filesystem::path& path);
void load();
void save();
};