diff options
Diffstat (limited to 'src/Config.h')
-rw-r--r-- | src/Config.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/src/Config.h b/src/Config.h index 0f5ca9e..236c1a3 100644 --- a/src/Config.h +++ b/src/Config.h @@ -1,5 +1,5 @@ /* - Copyright 2016-2017 StapleButter + Copyright 2016-2019 StapleButter This file is part of melonDS. @@ -21,6 +21,14 @@ #include "types.h" +enum +{ + HK_Lid = 0, + HK_Mic, + + HK_MAX +}; + namespace Config { FILE* GetConfigFile(const char* fileName, const char* permissions); @@ -31,6 +39,9 @@ void Save(); extern int KeyMapping[12]; extern int JoyMapping[12]; +extern int HKKeyMapping[HK_MAX]; +extern int HKJoyMapping[HK_MAX]; + extern int WindowWidth; extern int WindowHeight; @@ -46,6 +57,14 @@ extern int Threaded3D; extern int SocketBindAnyAddr; +extern int SavestateRelocSRAM; + +extern int AudioVolume; +extern int MicInputType; +extern char MicWavPath[512]; + +extern char LastROMFolder[512]; + } #endif // CONFIG_H |