mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-08-20 09:57:09 +00:00
remove debugbreak
This commit is contained in:
parent
cc29f10b1c
commit
196fffd59b
|
|
@ -68,7 +68,7 @@ void StringTable::ProcessStringTableData(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!foundLang)
|
if (!foundLang)
|
||||||
app.DebugPrintf("StringTable:: Can't find language '%ls'.\n", it_locales->c_str());
|
app.Printf("StringTable:: Can't find language '%ls'.\n", it_locales->c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(foundLang)
|
if(foundLang)
|
||||||
|
|
@ -142,7 +142,6 @@ LPCWSTR StringTable::getString(const wstring &id)
|
||||||
#ifndef _CONTENT_PACKAGE
|
#ifndef _CONTENT_PACKAGE
|
||||||
if (isStatic)
|
if (isStatic)
|
||||||
{
|
{
|
||||||
__debugbreak();
|
|
||||||
return L"";
|
return L"";
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -164,7 +163,6 @@ LPCWSTR StringTable::getString(int id)
|
||||||
#ifndef _CONTENT_PACKAGE
|
#ifndef _CONTENT_PACKAGE
|
||||||
if (!isStatic)
|
if (!isStatic)
|
||||||
{
|
{
|
||||||
__debugbreak();
|
|
||||||
return L"";
|
return L"";
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue