diff options
author | twinaphex | 2013-05-26 22:44:23 +0200 |
---|---|---|
committer | twinaphex | 2013-05-26 22:44:23 +0200 |
commit | 268c669a9bccc1b5ebf0ebd169b540642406d142 (patch) | |
tree | 28a7f84180a80bea0c7ae40362e2e69d821bbafd /frontend/libretro.c | |
parent | 1c579f0839cde9fd8555fadaf5f6f1b2a1fabd67 (diff) | |
download | pcsx_rearmed-268c669a9bccc1b5ebf0ebd169b540642406d142.tar.gz pcsx_rearmed-268c669a9bccc1b5ebf0ebd169b540642406d142.tar.bz2 pcsx_rearmed-268c669a9bccc1b5ebf0ebd169b540642406d142.zip |
Remove #if 0 around NEON enhancement
Diffstat (limited to 'frontend/libretro.c')
-rw-r--r-- | frontend/libretro.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/frontend/libretro.c b/frontend/libretro.c index 1e9929d..ed76798 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -243,10 +243,8 @@ void retro_set_environment(retro_environment_t cb) { "region", "Region; Auto|NTSC|PAL" }, #ifdef __ARM_NEON__ { "neon_interlace_enable", "Enable interlacing mode(s); disabled|enabled" }, -#if 0 { "neon_enhancement_enable", "Enhanced resolution (slow); disabled|enabled" }, #endif -#endif { NULL, NULL }, }; @@ -769,7 +767,6 @@ static void update_variables(bool in_flight) pl_rearmed_cbs.gpu_neon.allow_interlace = 1; } -#if 0 var.value = NULL; var.key = "neon_enhancement_enable"; @@ -781,7 +778,6 @@ static void update_variables(bool in_flight) pl_rearmed_cbs.gpu_neon.enhancement_enable = 1; } #endif -#endif if (in_flight) { // inform core things about possible config changes |