aboutsummaryrefslogtreecommitdiff
path: root/frontend/libretro.h
diff options
context:
space:
mode:
authortwinaphex2013-05-24 00:08:10 +0200
committertwinaphex2013-05-24 00:08:10 +0200
commit6b5beb44bae19400acddc052b3e475e638f3d50c (patch)
tree4dde2113779c80210ff6e516d313d13cf69a6d9c /frontend/libretro.h
parent5cdb2a3c8c6d53dd47257101d577f1fb43c2f459 (diff)
downloadpcsx_rearmed-6b5beb44bae19400acddc052b3e475e638f3d50c.tar.gz
pcsx_rearmed-6b5beb44bae19400acddc052b3e475e638f3d50c.tar.bz2
pcsx_rearmed-6b5beb44bae19400acddc052b3e475e638f3d50c.zip
(NEON ARM) Add NEON ARM core option (Enhanced resolution - slow)
Diffstat (limited to 'frontend/libretro.h')
-rwxr-xr-xfrontend/libretro.h9
1 files changed, 8 insertions, 1 deletions
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.