X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=common%2Femu.h;h=2d2aa49ef29223690cfb572d91621b4560cffe28;hb=c633456460a2995bfa4732fb2fb0bca3c785936e;hp=96cd55014e3be947cc9d87623a414abef184cc90;hpb=50cdcf97de15fa85341e2a6063252e3042dd7ea6;p=libpicofe.git diff --git a/common/emu.h b/common/emu.h index 96cd550..2d2aa49 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, no_frame_limitter 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;