diff --git a/README.MD b/README.MD index fed15ea..3eb1d2e 100644 --- a/README.MD +++ b/README.MD @@ -1,8 +1,11 @@ +Important note to Switch users: Since v1.84, please use nsp injection to start uae4all2, otherwise the `config save as` and `savestate export` options will not work. On SX OS, you can do this by holding down R while launching any installed game to make hbmenu appear. + Recent changes ====== 1.85 - make some notifications in menu more readable +- fix some visual inconsistencies in the menu 1.84 @@ -300,6 +303,7 @@ CHANGELOG 1.85 - make some notifications in menu more readable +- fix some visual inconsistencies in the menu 1.84 diff --git a/src/gp2x/menu/menu_main.cpp b/src/gp2x/menu/menu_main.cpp index e2f000b..5178305 100755 --- a/src/gp2x/menu/menu_main.cpp +++ b/src/gp2x/menu/menu_main.cpp @@ -457,8 +457,8 @@ static void draw_mainMenu(int c) void showWarning(const char *msg) { - text_draw_window(4,9,37,6,"Message"); - write_text(5,12,msg); + text_draw_window(4,9,37,4,"Message"); + write_text(5,11,msg); //write_text(11,16,"Press any button to continue"); text_flip(); SDL_Event ev; @@ -1187,7 +1187,7 @@ int run_mainMenu() if (remove(config_load_filename) == 0) { showWarning("Config File deleted"); } else { - showWarning("Config File doesn't exist."); + showWarning("Config File does not exist."); } } } diff --git a/src/gp2x/menu/menu_savestates.cpp b/src/gp2x/menu/menu_savestates.cpp index ced65ed..b44b446 100755 --- a/src/gp2x/menu/menu_savestates.cpp +++ b/src/gp2x/menu/menu_savestates.cpp @@ -703,7 +703,7 @@ int run_menuSavestates() cp(savestate_filename, save_export_filename); showWarning("File exported."); } else { - showWarning("Invalid filename. File not exported."); + showWarning("Invalid filename."); } #else saveMenu_case=-1; @@ -729,7 +729,7 @@ int run_menuSavestates() } else { - showWarning("File doesn't exist."); + showWarning("File does not exist."); saveMenu_case=-1; } } @@ -765,9 +765,9 @@ int run_menuSavestates() fclose(f); if (remove(savestate_filename) == 0) { showWarning("File deleted."); - } else { - showWarning("File doesn't exist."); } + } else { + showWarning("File does not exist."); } saveMenu_case=-1; break;