Green mode also in original menu

This commit is contained in:
fabio.olimpieri 2014-04-06 22:13:18 +00:00
parent 3e580c324b
commit 94dbf5dcb7

View File

@ -159,10 +159,17 @@ void settings_menu() {
sprintf(texto,"TURBO auto mode: disabled"); sprintf(texto,"TURBO auto mode: disabled");
print_string(fbuffer,texto,-1,145,14,0,ancho); print_string(fbuffer,texto,-1,145,14,0,ancho);
if (ordenador.bw) { switch (ordenador.bw) {
case 0:
default:
print_string(fbuffer,"TV Set: \001\012C\001\014o\001\011l\001\016o\001\013r",-1,165,15,0,ancho);
break;
case 1:
print_string(fbuffer,"TV Set: \001\011B\001\012&\001\014W",-1,165,15,0,ancho); print_string(fbuffer,"TV Set: \001\011B\001\012&\001\014W",-1,165,15,0,ancho);
} else { break;
print_string(fbuffer,"TV Set: \001\012C\001\014o\001\015l\001\016o\001\013r",-1,165,15,0,ancho); case 2:
print_string(fbuffer,"TV Set: \001\014Green",-1,165,15,0,ancho);
break;
} }
print_string(fbuffer,"1:",30,190,12,0,ancho); print_string(fbuffer,"1:",30,190,12,0,ancho);
@ -289,7 +296,7 @@ void settings_menu() {
ordenador.ay_emul=1-ordenador.ay_emul; ordenador.ay_emul=1-ordenador.ay_emul;
break; break;
case SDLK_v: case SDLK_v:
ordenador.bw=1-ordenador.bw; ordenador.bw=(ordenador.bw+1)%3;
computer_set_palete(); computer_set_palete();
break; break;
case SDLK_t: case SDLK_t: