X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Femu.h;h=b4f3c26e69b1688ad34e482d14ddf7e2cae6bafe;hb=60a10527f24efc63bdca6815914a240d706236db;hp=96cd55014e3be947cc9d87623a414abef184cc90;hpb=50cdcf97de15fa85341e2a6063252e3042dd7ea6;p=libpicofe.git diff --git a/common/emu.h b/common/emu.h index 96cd550..b4f3c26 100644 --- a/common/emu.h +++ b/common/emu.h @@ -8,7 +8,8 @@ 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, interlace + // A_SNs_gamma, perfect_vsync, giz_scanlines, giz_dblbuff + // vsync_mode, show_clock int PicoOpt; // used for config saving only, see Pico.h int PsndRate; // ditto int PicoRegion; // ditto @@ -20,7 +21,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;