From e9d4c85fabdede70da8f1c89f0b4edc567fdaa1f Mon Sep 17 00:00:00 2001 From: Ivan Epifanov Date: Wed, 28 Apr 2021 15:54:17 +0300 Subject: [PATCH] Remove vita workaround --- Source/utils/paths.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/utils/paths.cpp b/Source/utils/paths.cpp index d6530aade..2505ce0f2 100644 --- a/Source/utils/paths.cpp +++ b/Source/utils/paths.cpp @@ -62,11 +62,7 @@ std::string FromSDL(char *s) const std::string &BasePath() { if (!basePath) { -#ifdef __vita__ - basePath = PrefPath(); -#else basePath = FromSDL(SDL_GetBasePath()); -#endif } return *basePath; }