diff --git a/frontend/drivers/platform_xdk.c b/frontend/drivers/platform_xdk.c index 81991276e6..461b84c523 100644 --- a/frontend/drivers/platform_xdk.c +++ b/frontend/drivers/platform_xdk.c @@ -1260,12 +1260,10 @@ static void frontend_xdk_exec(const char *path, bool should_load_game) #ifndef IS_SALAMANDER bool original_verbose = verbosity_is_enabled(); #endif -#if defined(_XBOX) #if defined(_XBOX1) LAUNCH_DATA ptr; #elif defined(_XBOX360) char game_path[1024] = {0}; -#endif #endif (void)should_load_game; @@ -1273,7 +1271,6 @@ static void frontend_xdk_exec(const char *path, bool should_load_game) if (!string_is_empty(path)) XLaunchNewImage(path, NULL); #else -#ifdef _XBOX #if defined(_XBOX1) memset(&ptr, 0, sizeof(ptr)); @@ -1293,7 +1290,6 @@ static void frontend_xdk_exec(const char *path, bool should_load_game) XLaunchNewImage(path, 0); #endif #endif -#endif #ifndef IS_SALAMANDER if (original_verbose) verbosity_enable();