mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-23 09:34:42 +00:00
reimplement aether stuff from personal repo
This commit is contained in:
@@ -166,6 +166,13 @@ LPCWSTR StringTable::getString(int id)
|
||||
return L"";
|
||||
}
|
||||
|
||||
void StringTable::registerString(int id, const wstring &value)
|
||||
{
|
||||
if (id >= (int)m_stringsVec.size())
|
||||
m_stringsVec.resize(id + 1, L"");
|
||||
m_stringsVec[id] = value;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user