Skip to content

Commit

Permalink
fix positioning of "Loading..." and "Saving..." to be displayed at the
Browse files Browse the repository at this point in the history
correct position (where the preview pic is meant to be) and upload a
screenshot of the latest menu
  • Loading branch information
ivanovic committed Dec 15, 2011
1 parent 5cbd0e7 commit 3ea97de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified pandora/pnd/screenshots/snes9x_actraiser2_menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions unix/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ void menu_dispupdate(void)
//show screen shot for snapshot
if(SaveSlotNum_old != SaveSlotNum)
{
//strcpy(temp,"Loading...");
//S9xDisplayString (temp, GFX.Screen +280, 640,210/*204*/);
strcpy(temp," Loading...");
S9xDisplayString (temp, GFX.Screen +320/*280*/, 640,80/*204*/);
//S9xDeinitUpdate (320, 240);
char fname[256], ext[8];
sprintf(ext, ".s0%d", SaveSlotNum);
Expand Down Expand Up @@ -447,7 +447,7 @@ void menu_loop(void)
memcpy(snapscreen,snapscreen_tmp,16050);
show_screenshot();
strcpy(fname," Saving...");
S9xDisplayString (fname, GFX.Screen +280, 640,204);
S9xDisplayString (temp, GFX.Screen +320/*280*/, 640,80/*204*/);
S9xDeinitUpdate (320, 240);
sprintf(ext, ".s0%d", SaveSlotNum);
strcpy(fname, S9xGetFilename (ext));
Expand Down

0 comments on commit 3ea97de

Please sign in to comment.