Merge pull request #3572 from frangarcj/patch-1

Wrong ifdef
This commit is contained in:
Twinaphex 2016-09-12 19:24:57 +02:00 committed by GitHub
commit b73c7fe4e9
1 changed files with 2 additions and 2 deletions

View File

@ -871,7 +871,7 @@ static void content_load_init_wrap(
*argc = 0; *argc = 0;
argv[(*argc)++] = strdup("retroarch"); argv[(*argc)++] = strdup("retroarch");
#ifndef HAVE_DYNAMIC #ifdef HAVE_DYNAMIC
if (!args->no_content) if (!args->no_content)
{ {
#endif #endif
@ -888,7 +888,7 @@ static void content_load_init_wrap(
argv[(*argc)++] = strdup("--menu"); argv[(*argc)++] = strdup("--menu");
} }
#endif #endif
#ifndef HAVE_DYNAMIC #ifdef HAVE_DYNAMIC
} }
#endif #endif