aboutsummaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
authortwinaphex2014-06-23 15:02:13 +0200
committernotaz2014-12-20 02:57:24 +0200
commit11813b9d99d4cf506cf94a9d0db6dd7d6c934117 (patch)
tree892cc73be6b68b9515c5411e2e8cc7af327f3f67 /frontend
parentc7ed243f7ab63e4fd9c314e148e2f367b17e4f0b (diff)
downloadpcsx_rearmed-11813b9d99d4cf506cf94a9d0db6dd7d6c934117.tar.gz
pcsx_rearmed-11813b9d99d4cf506cf94a9d0db6dd7d6c934117.tar.bz2
pcsx_rearmed-11813b9d99d4cf506cf94a9d0db6dd7d6c934117.zip
libretro: Set performance level
Diffstat (limited to 'frontend')
-rw-r--r--frontend/libretro.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c
index 51c0a6e..aea17e8 100644
--- a/frontend/libretro.c
+++ b/frontend/libretro.c
@@ -974,6 +974,12 @@ static bool find_any_bios(const char *dirpath, char *path, size_t path_size)
#define find_any_bios(...) false
#endif
+static void check_system_specs(void)
+{
+ unsigned level = 6;
+ environ_cb(RETRO_ENVIRONMENT_SET_PERFORMANCE_LEVEL, &level);
+}
+
void retro_init(void)
{
const char *bios[] = { "scph1001", "scph5501", "scph7001" };
@@ -1049,6 +1055,7 @@ void retro_init(void)
SaveFuncs.close = save_close;
update_variables(false);
+ check_system_specs();
}
void retro_deinit(void)