Config: Fix warning

This commit is contained in:
Vicki Pfau 2023-12-24 20:43:39 -08:00
parent e01fc0f2b7
commit feb7b5a116
1 changed files with 1 additions and 0 deletions

View File

@ -290,6 +290,7 @@ void mCoreConfigPortablePath(char* out, size_t outLength) {
WideCharToMultiByte(CP_UTF8, 0, wpath, -1, out, outLength, 0, 0);
StringCchCatA(out, outLength, PATH_SEP "portable.ini");
#elif defined(PSP2) || defined(GEKKO) || defined(__SWITCH__) || defined(__3DS__)
UNUSED(outLength);
out[0] = '\0';
#else
getcwd(out, outLength);