From 196fffd59b58870038b56bf43d07486155fa2320 Mon Sep 17 00:00:00 2001 From: Tuff CWC Date: Sat, 7 Mar 2026 23:35:05 +0100 Subject: [PATCH] remove debugbreak --- Minecraft.Client/StringTable.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Minecraft.Client/StringTable.cpp b/Minecraft.Client/StringTable.cpp index da76dd707..8453a00cf 100644 --- a/Minecraft.Client/StringTable.cpp +++ b/Minecraft.Client/StringTable.cpp @@ -68,7 +68,7 @@ void StringTable::ProcessStringTableData(void) } 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) @@ -142,7 +142,6 @@ LPCWSTR StringTable::getString(const wstring &id) #ifndef _CONTENT_PACKAGE if (isStatic) { - __debugbreak(); return L""; } #endif @@ -164,7 +163,6 @@ LPCWSTR StringTable::getString(int id) #ifndef _CONTENT_PACKAGE if (!isStatic) { - __debugbreak(); return L""; } #endif