diff options
author | twinaphex | 2013-05-26 22:44:23 +0200 |
---|---|---|
committer | notaz | 2013-06-04 23:35:05 +0300 |
commit | 7ab47906292181bc9ddaac26c20c11d7c1572321 (patch) | |
tree | 19b423be5876fcd8183d5bf77316135093f8fd11 /frontend | |
parent | 19a784e63f95b0eb32d252fabb144531f695a983 (diff) | |
download | pcsx_rearmed-7ab47906292181bc9ddaac26c20c11d7c1572321.tar.gz pcsx_rearmed-7ab47906292181bc9ddaac26c20c11d7c1572321.tar.bz2 pcsx_rearmed-7ab47906292181bc9ddaac26c20c11d7c1572321.zip |
Remove #if 0 around NEON enhancement
Diffstat (limited to 'frontend')
-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 644db92..413098d 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 }, }; @@ -770,7 +768,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"; @@ -782,7 +779,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 |