mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
* Added app icon to the window * Added Roms path Added an option to the config to set a folder that opens when selecting a game instead of having to navigate to the folder manually every time. * Clear up PR * Clear up PR --------- Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
39 lines
No EOL
1.1 KiB
C++
39 lines
No EOL
1.1 KiB
C++
#pragma once
|
|
#include <filesystem>
|
|
|
|
#include "audio/dsp_core.hpp"
|
|
#include "renderer.hpp"
|
|
|
|
// Remember to initialize every field here to its default value otherwise bad things will happen
|
|
struct EmulatorConfig {
|
|
// Only enable the shader JIT by default on platforms where it's completely tested
|
|
#ifdef PANDA3DS_X64_HOST
|
|
static constexpr bool shaderJitDefault = true;
|
|
#else
|
|
static constexpr bool shaderJitDefault = false;
|
|
#endif
|
|
|
|
bool shaderJitEnabled = shaderJitDefault;
|
|
bool discordRpcEnabled = false;
|
|
RendererType rendererType = RendererType::OpenGL;
|
|
Audio::DSPCore::Type dspType = Audio::DSPCore::Type::Null;
|
|
|
|
bool sdCardInserted = true;
|
|
bool sdWriteProtected = false;
|
|
bool usePortableBuild = false;
|
|
|
|
bool audioEnabled = false;
|
|
bool vsyncEnabled = true;
|
|
|
|
bool chargerPlugged = true;
|
|
// Default to 3% battery to make users suffer
|
|
int batteryPercentage = 3;
|
|
|
|
// Default ROM path to open in Qt and misc frontends
|
|
std::filesystem::path defaultRomPath = "";
|
|
std::filesystem::path filePath;
|
|
|
|
EmulatorConfig(const std::filesystem::path& path);
|
|
void load();
|
|
void save();
|
|
}; |