X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fcommon%2Femu.h;h=4d2f17d4787deefe281426de0e8229a736dc7f98;hb=005651ce13dc199390e9ffe2f0624e18cbde77dc;hp=faa4868e17771276daa5d5f7936ed70e5d7acca7;hpb=636d5f257c3e5bafba99ddbdc385a289e12c9deb;p=picodrive.git diff --git a/platform/common/emu.h b/platform/common/emu.h index faa4868..4d2f17d 100644 --- a/platform/common/emu.h +++ b/platform/common/emu.h @@ -84,7 +84,6 @@ typedef struct _currentConfig_t { extern currentConfig_t currentConfig, defaultConfig; extern char *PicoConfigFile; -extern int rom_loaded; extern int state_slot; extern int config_slot, config_slot_current; extern unsigned char *movie_data; @@ -113,14 +112,6 @@ enum TPicoGameState { PGS_SuspendWake, /* PSP */ }; -// media types -enum { - PM_BAD = 0, - PM_MD_CART, /* also 32x */ - PM_MARK3, - PM_CD, -}; - void emu_init(void); void emu_finish(void); void emu_loop(void); @@ -149,6 +140,11 @@ void emu_get_game_name(char *str150); void emu_set_fastforward(int set_on); void emu_status_msg(const char *format, ...); +/* default sound code */ +void emu_sound_start(void); +void emu_sound_stop(void); +void emu_sound_wait(void); + /* used by some (but not all) platforms */ void emu_cmn_forced_frame(int no_scale, int do_emu); @@ -164,8 +160,6 @@ void pemu_forced_frame(int no_scale, int do_emu); // ..to g_menubg_src_ptr void pemu_finalize_frame(const char *fps, const char *notice_msg); void pemu_sound_start(void); -void pemu_sound_stop(void); -void pemu_sound_wait(void); void plat_early_init(void); void plat_init(void);