Working release build

This commit is contained in:
Loki Rautio
2026-03-01 12:04:39 -06:00
parent f85674da9b
commit 425ea4df34
34 changed files with 4332 additions and 4586 deletions

View File

@@ -24,6 +24,8 @@ wstring Language::getElement(const wstring& elementId, ...)
{
#ifdef __PSVITA__ // 4J - vita doesn't like having a reference type as the last parameter passed to va_start - we shouldn't need this method anyway
return L"";
#elif _MSC_VER >= 1930 // VS2022+ also disallows va_start with reference types
return elementId;
#else
va_list args;
va_start(args, elementId);