X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Femu.h;h=34c6f01b27aedd9cfedaf2ddf28146fc9af47193;hb=ae1bf35ce4827625a25a124dbbe1c3808fca1b24;hp=67533cbd8f247c81bfb4a636ff64d8c7e7485830;hpb=f013066e974c7d35b818a6fca43a9deba1ce5c3e;p=libpicofe.git diff --git a/common/emu.h b/common/emu.h index 67533cb..34c6f01 100644 --- a/common/emu.h +++ b/common/emu.h @@ -8,7 +8,7 @@ typedef struct { int EmuOpt; // LSb->MSb: use_sram, show_fps, enable_sound, gzip_saves, // squidgehack, no_save_cfg_on_exit, , 16_bit_mode // craigix_ram, confirm_save, show_cd_leds, confirm_load - // A_SNs_gamma, perfect_vsync + // A_SNs_gamma, perfect_vsync, giz_scanlines, giz_dblbuff int PicoOpt; // used for config saving only, see Pico.h int PsndRate; // ditto int PicoRegion; // ditto @@ -20,7 +20,9 @@ typedef struct { int JoyBinds[4][32]; int PicoAutoRgnOrder; int PicoCDBuffers; - int scaling; // 0=center, 1=hscale, 2=hvscale, 3=hsoftscale + int scaling; // gp2x: 0=center, 1=hscale, 2=hvscale, 3=hsoftscale; psp: bilinear filtering + float scale; // psp: screen scale + float hscale32, hscale40; // psp: horizontal scale } currentConfig_t;