remove debugbreak

This commit is contained in:
Tuff CWC 2026-03-07 23:35:05 +01:00 committed by GitHub
parent cc29f10b1c
commit 196fffd59b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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