From 6b5beb44bae19400acddc052b3e475e638f3d50c Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 24 May 2013 00:08:10 +0200 Subject: (NEON ARM) Add NEON ARM core option (Enhanced resolution - slow) --- frontend/libretro.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'frontend/libretro.h') diff --git a/frontend/libretro.h b/frontend/libretro.h index b02855a..dc5b52b 100755 --- a/frontend/libretro.h +++ b/frontend/libretro.h @@ -452,6 +452,13 @@ enum retro_mod // Result is set to true if some variables are updated by // frontend since last call to RETRO_ENVIRONMENT_GET_VARIABLE. // Variables should be queried with GET_VARIABLE. + // +#define RETRO_ENVIRONMENT_SET_SUPPORT_NO_GAME 18 + // const bool * -- + // If true, the libretro implementation supports calls to retro_load_game() with NULL as argument. + // Used by cores which can run without particular game data. + // This should be called within retro_set_environment() only. + // Pass this to retro_video_refresh_t if rendering to hardware. // Passing NULL to retro_video_refresh_t is still a frame dupe as normal. @@ -496,7 +503,7 @@ typedef void (*retro_keyboard_event_t)(bool down, unsigned keycode, uint32_t cha struct retro_keyboard_callback { - retro_keyboard_event_t callback; + retro_keyboard_event_t callback; }; // Callbacks for RETRO_ENVIRONMENT_SET_DISK_CONTROL_INTERFACE. -- cgit v1.2.3