X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=gp2x%2Femu.h;h=75a0322ea3abe0b309a45d98dca05c835ce10b98;hb=576fc637929cdfc92884e2e92c6c22e002cfb000;hp=3c90fdccbe9c804fbc01f0437cacff138eb4e630;hpb=daf91588bd7b73663566b0ead2b3605cd84d5eb1;p=libpicofe.git diff --git a/gp2x/emu.h b/gp2x/emu.h index 3c90fdc..75a0322 100644 --- a/gp2x/emu.h +++ b/gp2x/emu.h @@ -1,4 +1,4 @@ -// (c) Copyright 2006 notaz, All rights reserved. +// (c) Copyright 2006-2007 notaz, All rights reserved. // Free for non-commercial use. // For commercial use, separate licencing terms must be obtained. @@ -13,14 +13,15 @@ enum TPicoGameState { PGS_KeyConfig, PGS_ReloadRom, PGS_Menu, + PGS_RestartRun, }; typedef struct { char lastRomFile[512]; int EmuOpt; // LSb->MSb: use_sram, show_fps, enable_sound, gzip_saves, - // squidgehack, save_cfg_on_exit, , 16_bit_mode - // craigix_ram, confirm_save, show_cd_leds, enable_cdda - // enable_pcm + // squidgehack, no_save_cfg_on_exit, , 16_bit_mode + // craigix_ram, confirm_save, show_cd_leds, confirm_load + // int PicoOpt; // used for config saving only, see Pico.h int PsndRate; // ditto int PicoRegion; // ditto @@ -30,6 +31,9 @@ typedef struct { int volume; int gamma; int JoyBinds[4][32]; + int PicoAutoRgnOrder; + int PicoCDBuffers; + int scaling; // 0=center, 1=hscale, 2=hvscale, 3=hsoftscale } currentConfig_t; extern char romFileName[]; @@ -45,5 +49,11 @@ void emu_Loop(void); void emu_ResetGame(void); int emu_ReadConfig(int game); int emu_WriteConfig(int game); +char *emu_GetSaveFName(int load, int is_sram, int slot); +int emu_check_save_file(int slot); +void emu_set_save_cbs(int gz); +void emu_forced_frame(void); +int emu_cd_check(char **bios_file); int find_bios(int region, char **bios_file); +void scaling_update(void);