mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-25 10:34:33 +00:00
keyboard warrior
This commit is contained in:
@@ -20,15 +20,15 @@ wstring Language::getElement(const wstring& elementId)
|
||||
return elementId;
|
||||
} */
|
||||
|
||||
wstring Language::getElement(const wstring& elementId, ...)
|
||||
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"";
|
||||
#else
|
||||
//#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"";
|
||||
//#else
|
||||
va_list args;
|
||||
va_start(args, elementId);
|
||||
return getElement(elementId, args);
|
||||
#endif
|
||||
//#endif
|
||||
}
|
||||
|
||||
wstring Language::getElement(const wstring& elementId, va_list args)
|
||||
|
||||
Reference in New Issue
Block a user