mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-02-03 21:45:26 +01:00
frontend, fix scaling option handling
This commit is contained in:
parent
442094d589
commit
6ab7a6f932
@ -1218,7 +1218,7 @@ void emu_cmn_forced_frame(int no_scale, int do_emu)
|
||||
|
||||
PicoIn.opt &= ~POPT_ALT_RENDERER;
|
||||
PicoIn.opt |= POPT_ACC_SPRITES;
|
||||
if (!no_scale)
|
||||
if (!no_scale && currentConfig.scaling)
|
||||
PicoIn.opt |= POPT_EN_SOFTSCALE;
|
||||
|
||||
PicoDrawSetOutFormat(PDF_RGB555, 1);
|
||||
|
||||
@ -294,7 +294,7 @@ void pemu_forced_frame(int no_scale, int do_emu)
|
||||
|
||||
PicoIn.opt &= ~0x10;
|
||||
PicoIn.opt |= POPT_ACC_SPRITES;
|
||||
if (!no_scale)
|
||||
if (!no_scale && currentConfig.scaling)
|
||||
PicoIn.opt |= POPT_EN_SOFTSCALE;
|
||||
currentConfig.EmuOpt |= 0x80;
|
||||
|
||||
|
||||
@ -691,7 +691,7 @@ void pemu_forced_frame(int no_scale, int do_emu)
|
||||
|
||||
PicoIn.opt &= ~POPT_ALT_RENDERER;
|
||||
PicoIn.opt |= POPT_ACC_SPRITES;
|
||||
if (!no_scale)
|
||||
if (!no_scale && defaultConfig.scaling)
|
||||
PicoIn.opt |= POPT_EN_SOFTSCALE;
|
||||
currentConfig.EmuOpt |= 0x80;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user