bugfix/improvement

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@290 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-11-01 23:07:56 +00:00
parent 3ec29f016c
commit 1f4e9f147f
5 changed files with 60 additions and 15 deletions

View file

@ -991,7 +991,7 @@ static void menu_opt3_cust_draw(const menu_entry *entry, int x, int y, void *par
char *val = " never";
if (currentConfig.EmuOpt & 0x2000)
val = (currentConfig.EmuOpt & 0x10000) ? "sometimes" : " always";
text_out16(x, y, "Wait for vsync %s", val);
text_out16(x, y, "Wait for vsync (slow) %s", val);
break;
}
default: break;
@ -1045,7 +1045,7 @@ static void draw_dispmenu_options(int menu_sel)
static void dispmenu_loop_options(void)
{
static int menu_sel = 0;
int menu_sel_max, is_32col = 0;
int menu_sel_max, is_32col = (Pico.video.reg[12]&1)^1;
unsigned long inp = 0;
menu_id selected_id;