Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
1,287 additions
and 1,066 deletions.
- +1 −1 Makefile
- +2 −10 include/dialogs.h
- +2 −5 include/gui.h
- +19 −0 include/guigame.h
- +3 −0 include/lang.h
- +3 −0 include/menusys.h
- +6 −3 lng/lang_English.lng
- +144 −156 src/dialogs.c
- +4 −878 src/gui.c
- +935 −0 src/guigame.c
- +5 −7 src/lang.c
- +155 −0 src/menusys.c
- +8 −6 src/opl.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -0,0 +1,19 @@ | ||
| #ifndef __GUIGAME_H | ||
| #define __GUIGAME_H | ||
|
|
||
| int guiGameAltStartupNameHandler(char *text, int maxLen); | ||
|
|
||
| char *gameConfigSource(void); | ||
|
|
||
| int guiGameVmcNameHandler(char *text, int maxLen); | ||
| void guiGameShowVMCMenu(int id, item_list_t *support); | ||
| void guiGameShowCompatConfig(int id, item_list_t *support, config_set_t *configSet); | ||
| void guiGameShowGSConfig(void); | ||
| void guiGameShowCheatConfig(void); | ||
| void guiGameShowPadEmuConfig(void); | ||
|
|
||
| void guiGameLoadConfig(item_list_t *support, config_set_t *configSet); | ||
| void guiGameSaveConfig(config_set_t *configSet, item_list_t *support); | ||
| void guiGameRemoveSettings(config_set_t *configSet); | ||
| void guiGameTestSettings(int id, item_list_t *support, config_set_t *configSet); | ||
| #endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -269,6 +269,9 @@ enum _STR_IDS { | ||
| _STR_CACHE_HDD_GAME_LIST, | ||
| _STR_ENABLE_NOTIFICATIONS, | ||
| _STR_NOTIFICATIONS, | ||
| _STR_GAME_MENU, | ||
| _STR_GAME_SETTINGS_SAVED, | ||
| _STR_GAME_SETTINGS_REMOVED, | ||
|
|
||
| LANG_STR_COUNT | ||
| }; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.