Skip to content

Commit

Permalink
fix menu notifications again, update readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rsn8887 committed Jan 10, 2019
1 parent 77dbd7d commit f598e31
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions 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

Expand Down Expand Up @@ -300,6 +303,7 @@ CHANGELOG
1.85

- make some notifications in menu more readable
- fix some visual inconsistencies in the menu

1.84

Expand Down
6 changes: 3 additions & 3 deletions src/gp2x/menu/menu_main.cpp
Expand Up @@ -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;
Expand Down Expand Up @@ -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.");
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions src/gp2x/menu/menu_savestates.cpp
Expand Up @@ -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;
Expand All @@ -729,7 +729,7 @@ int run_menuSavestates()
}
else
{
showWarning("File doesn't exist.");
showWarning("File does not exist.");
saveMenu_case=-1;
}
}
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit f598e31

Please sign in to comment.