adding frameskip and speedhacks options on gui
[drnoksnes] / platform / hgw.h
1 #ifndef _PLATFORM_HGW_H_
2 #define _PLATFORM_HGW_H_
3
4 #ifdef __cplusplus
5 extern bool hgwLaunched;
6
7 void HgwInit();
8 void HgwDeinit();
9 void HgwConfig();
10 void HgwPollEvents();
11 #endif
12
13 #define kGConfPath "/apps/maemo/drnoksnes/"
14 #define kGConfRomFile kGConfPath "rom"
15 #define kGConfDisableAudio kGConfPath "no_audio"
16 #define kGConfTurboMode kGConfPath "turbo"
17 #define kGConfFrameskip kGConfPath "frameskip"
18 #define kGConfSpeedhacks kGConfPath "speedhacks"
19
20 #endif
21