--- uae/src/tui.c 2018/04/24 16:44:54 1.1.1.6 +++ uae/src/tui.c 2018/04/24 16:58:29 1.1.1.8 @@ -251,11 +251,11 @@ static void print_configuration (void) tui_puts (" (clever)"); tui_gotoxy (OPTION_COLUMN+7, y++); tui_puts ("drawing every "); - switch (currprefs.framerate) { + switch (currprefs.gfx_framerate) { case 1: break; case 2: tui_puts ("2nd "); break; case 3: tui_puts ("3rd "); break; - default: sprintf (tmp, "%dth ",currprefs.framerate); tui_puts (tmp); break; + default: sprintf (tmp, "%dth ",currprefs.gfx_framerate); tui_puts (tmp); break; } tui_puts ("frame. "); @@ -480,9 +480,9 @@ static void VideoOptions (void) currprefs.gfx_correct_aspect = !currprefs.gfx_correct_aspect; break; case 9: - currprefs.framerate++; - if (currprefs.framerate > 9) - currprefs.framerate=1; + currprefs.gfx_framerate++; + if (currprefs.gfx_framerate > 9) + currprefs.gfx_framerate=1; break; case 10: currprefs.gfxmem_size += 0x100000; @@ -614,7 +614,7 @@ static void SoundOptions (void) currprefs.sound_freq = atoi (tmp); break; case 5: - currprefs.stereo = !currprefs.stereo; + currprefs.stereo = (currprefs.stereo + 1) % 3; break; } }