(Vita) Silence warning (#14218)

This commit is contained in:
Cthulhu-throwaway 2022-07-25 05:43:48 -03:00 committed by GitHub
parent 97e3ef6ec7
commit 566b4b4520
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -323,13 +323,13 @@ static void frontend_psp_exec(const char *path, bool should_load_game)
#elif defined(VITA) #elif defined(VITA)
#ifndef IS_SALAMANDER #ifndef IS_SALAMANDER
#ifdef HAVE_NETWORKING #ifdef HAVE_NETWORKING
const char *arg_data[NETPLAY_FORK_MAX_ARGS]; char *arg_data[NETPLAY_FORK_MAX_ARGS];
#else #else
const char *arg_data[2]; char *arg_data[2];
#endif #endif
char game_path[PATH_MAX_LENGTH]; char game_path[PATH_MAX_LENGTH];
#else #else
const char *arg_data[2]; char *arg_data[2];
char boot_params[PATH_MAX_LENGTH]; char boot_params[PATH_MAX_LENGTH];
#endif #endif