Merge pull request #630 from jSTE0/fix-spu-defaults
authorAutechre <libretro@gmail.com>
Wed, 23 Mar 2022 17:20:03 +0000 (18:20 +0100)
committerGitHub <noreply@github.com>
Wed, 23 Mar 2022 17:20:03 +0000 (18:20 +0100)
Fix SPU defaults for pre-ARMv7 CPUs

frontend/libretro_core_options.h

index 7c850aa..b801ef5 100644 (file)
@@ -876,7 +876,11 @@ struct retro_core_option_definition option_defs_us[] = {
          { "enabled",  NULL },
          { NULL, NULL },
       },
+#ifdef HAVE_PRE_ARMV7
+      "disabled",
+#else
       "enabled",
+#endif
    },
    {
       "pcsx_rearmed_spu_interpolation",
@@ -889,7 +893,11 @@ struct retro_core_option_definition option_defs_us[] = {
          { "off",      "disabled" },
          { NULL, NULL },
       },
+#ifdef HAVE_PRE_ARMV7
+      "off",
+#else
       "simple",
+#endif
    },
    {
       "pcsx_rearmed_pe2_fix",