done ui load name and icon

This commit is contained in:
VDH
2026-01-08 18:43:10 +07:00
parent 0884ae338f
commit 892b273ea5
267 changed files with 1491 additions and 574 deletions
+5 -3
View File
@@ -249,8 +249,11 @@ namespace BrewMonster
var right2 = line.Substring(sp).TrimStart();
if (int.TryParse(left2, out index))
{
text = right2;
return true;
if (right2.Length > 0 && (right2[0] == '"' || right2[0] == '\''))
{
text = right2;
return true;
}
}
return false;
}
@@ -275,7 +278,6 @@ namespace BrewMonster
{
value = value.Substring(1, value.Length - 2);
}
if (isWide) m_WStrTab[id] = value;
else m_AStrTab[id] = value;
}