reduce max zapper tolerance to 20

This commit is contained in:
arpruss
2020-05-16 15:11:36 -05:00
parent a125c1eec6
commit 176e250c6a
2 changed files with 1 additions and 13 deletions

View File

@@ -258,18 +258,6 @@ struct retro_core_option_definition option_defs_common[] = {
{ "18", NULL }, { "18", NULL },
{ "19", NULL }, { "19", NULL },
{ "20", NULL }, { "20", NULL },
{ "21", NULL },
{ "22", NULL },
{ "23", NULL },
{ "24", NULL },
{ "25", NULL },
{ "26", NULL },
{ "27", NULL },
{ "28", NULL },
{ "29", NULL },
{ "30", NULL },
{ "31", NULL },
{ "32", NULL },
{ NULL, NULL }, { NULL, NULL },
}, },
"6", "6",

View File

@@ -25,7 +25,7 @@
#define ROUNDED_TARGET #define ROUNDED_TARGET
#ifdef ROUNDED_TARGET #ifdef ROUNDED_TARGET
#define MAX_TOLERANCE 32 #define MAX_TOLERANCE 20
static uint32 targetExpansion[MAX_TOLERANCE+1]; static uint32 targetExpansion[MAX_TOLERANCE+1];
#endif #endif
static int tolerance; static int tolerance;