diff options
author | Arisotura <thetotalworm@gmail.com> | 2021-11-17 20:42:11 +0100 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2021-11-17 20:42:11 +0100 |
commit | 5bb8f4c9226ec5967bb3a994a37d38435a44223e (patch) | |
tree | d7f7de13a433a3b132e1d9f39df582954187b460 /src/frontend/qt_sdl/PlatformConfig.cpp | |
parent | 69715043cad65db6e5adb252746f9ec4c1f61087 (diff) |
* remove more Config dependencies from the core
* also use less shitty strings
Diffstat (limited to 'src/frontend/qt_sdl/PlatformConfig.cpp')
-rw-r--r-- | src/frontend/qt_sdl/PlatformConfig.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/frontend/qt_sdl/PlatformConfig.cpp b/src/frontend/qt_sdl/PlatformConfig.cpp index a224b66..70fc852 100644 --- a/src/frontend/qt_sdl/PlatformConfig.cpp +++ b/src/frontend/qt_sdl/PlatformConfig.cpp @@ -71,6 +71,17 @@ int JIT_LiteralOptimisations = true; int JIT_FastMemory = true; #endif +int ExternalBIOSEnable; + +char BIOS9Path[1024]; +char BIOS7Path[1024]; +char FirmwarePath[1024]; + +char DSiBIOS9Path[1024]; +char DSiBIOS7Path[1024]; +char DSiFirmwarePath[1024]; +char DSiNANDPath[1024]; + int DLDIEnable; char DLDISDPath[1024]; int DLDISize; @@ -206,6 +217,17 @@ ConfigEntry PlatformConfigFile[] = #endif #endif + {"ExternalBIOSEnable", 0, &ExternalBIOSEnable, 0, NULL, 0}, + + {"BIOS9Path", 1, BIOS9Path, 0, "", 1023}, + {"BIOS7Path", 1, BIOS7Path, 0, "", 1023}, + {"FirmwarePath", 1, FirmwarePath, 0, "", 1023}, + + {"DSiBIOS9Path", 1, DSiBIOS9Path, 0, "", 1023}, + {"DSiBIOS7Path", 1, DSiBIOS7Path, 0, "", 1023}, + {"DSiFirmwarePath", 1, DSiFirmwarePath, 0, "", 1023}, + {"DSiNANDPath", 1, DSiNANDPath, 0, "", 1023}, + {"DLDIEnable", 0, &DLDIEnable, 0, NULL, 0}, {"DLDISDPath", 1, DLDISDPath, 0, "dldi.bin", 1023}, {"DLDISize", 0, &DLDISize, 0, NULL, 0}, |