aboutsummaryrefslogtreecommitdiff
path: root/src/Config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Config.h')
-rw-r--r--src/Config.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Config.h b/src/Config.h
index cea051f..b112309 100644
--- a/src/Config.h
+++ b/src/Config.h
@@ -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;
@@ -50,6 +61,12 @@ extern int SocketBindAnyAddr;
extern int SavestateRelocSRAM;
+extern int AudioVolume;
+extern int MicInputType;
+extern char MicWavPath[512];
+
+extern char LastROMFolder[512];
+
}
#endif // CONFIG_H