X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fgp2x%2Femu.h;h=75a0322ea3abe0b309a45d98dca05c835ce10b98;hb=2d0b15bb2c532cacdbc8fcecb915177b1bd5f2af;hp=b487c51eaa5aeaf44fe527d44593d7c0ef6355ef;hpb=2433f409129279095926eb00cf8ab429738f80dd;p=picodrive.git diff --git a/platform/gp2x/emu.h b/platform/gp2x/emu.h index b487c51..75a0322 100644 --- a/platform/gp2x/emu.h +++ b/platform/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,13 +13,14 @@ 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, no_save_cfg_on_exit, , 16_bit_mode - // craigix_ram, confirm_save, show_cd_leds + // craigix_ram, confirm_save, show_cd_leds, confirm_load // int PicoOpt; // used for config saving only, see Pico.h int PsndRate; // ditto @@ -52,6 +53,7 @@ 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);