diff options
author | Arisotura <thetotalworm@gmail.com> | 2020-08-15 00:14:05 +0200 |
---|---|---|
committer | Arisotura <thetotalworm@gmail.com> | 2020-08-15 00:14:05 +0200 |
commit | f8d1d08e9c13d39ccb6d0c50ae74e7bbe9ed52c8 (patch) | |
tree | c1e1870c4a344b63e625049daeb17bbda7cdbe1f /src/frontend/qt_sdl/PlatformConfig.cpp | |
parent | 4299ef5f067c0f7aac338fbdd5e36726f8c8af64 (diff) |
(finally) build the goddamn cheat interface
Diffstat (limited to 'src/frontend/qt_sdl/PlatformConfig.cpp')
-rw-r--r-- | src/frontend/qt_sdl/PlatformConfig.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frontend/qt_sdl/PlatformConfig.cpp b/src/frontend/qt_sdl/PlatformConfig.cpp index bfb3f97..76c5f4b 100644 --- a/src/frontend/qt_sdl/PlatformConfig.cpp +++ b/src/frontend/qt_sdl/PlatformConfig.cpp @@ -72,6 +72,8 @@ char MicWavPath[1024]; char LastROMFolder[1024]; +int EnableCheats; + bool EnableJIT; ConfigEntry PlatformConfigFile[] = @@ -162,6 +164,8 @@ ConfigEntry PlatformConfigFile[] = {"LastROMFolder", 1, LastROMFolder, 0, "", 1023}, + {"EnableCheats", 0, &EnableCheats, 0, NULL, 0}, + {"", -1, NULL, 0, NULL, 0} }; |