mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-08 10:58:27 +00:00
Fixed text being printed incorrectly.
This commit is contained in:
parent
9b0fc4001a
commit
088f82996e
@ -715,7 +715,7 @@ public int MenuHandler_DeleteStyleRecords(Menu menu, MenuAction action, int para
|
|||||||
char[] sMenuItem = new char[128];
|
char[] sMenuItem = new char[128];
|
||||||
|
|
||||||
Menu submenu = new Menu(MenuHandler_DeleteStyleRecords_Confirm);
|
Menu submenu = new Menu(MenuHandler_DeleteStyleRecords_Confirm);
|
||||||
submenu.SetTitle("%T\n ", "DeleteConfirmStyle", param1, gS_StyleStrings[style]);
|
submenu.SetTitle("%T\n ", "DeleteConfirmStyle", param1, gS_StyleStrings[style][sStyleName]);
|
||||||
|
|
||||||
for(int i = 1; i <= GetRandomInt(1, 4); i++)
|
for(int i = 1; i <= GetRandomInt(1, 4); i++)
|
||||||
{
|
{
|
||||||
@ -723,7 +723,7 @@ public int MenuHandler_DeleteStyleRecords(Menu menu, MenuAction action, int para
|
|||||||
submenu.AddItem("-1", sMenuItem);
|
submenu.AddItem("-1", sMenuItem);
|
||||||
}
|
}
|
||||||
|
|
||||||
FormatEx(sMenuItem, 128, "%T", "MenuResponseYesStyle", param1, gS_StyleStrings[style]);
|
FormatEx(sMenuItem, 128, "%T", "MenuResponseYesStyle", param1, gS_StyleStrings[style][sStyleName]);
|
||||||
|
|
||||||
IntToString(style, info, 16);
|
IntToString(style, info, 16);
|
||||||
submenu.AddItem(info, sMenuItem);
|
submenu.AddItem(info, sMenuItem);
|
||||||
|
|||||||
@ -87,7 +87,7 @@
|
|||||||
"DeleteStyleRecordsRecordsMenuTitle"
|
"DeleteStyleRecordsRecordsMenuTitle"
|
||||||
{
|
{
|
||||||
"#format" "{1:s}"
|
"#format" "{1:s}"
|
||||||
"en" "Choose a style to delete all the records of for '{1}':"
|
"en" "Choose a style to delete all the records for '{1}':"
|
||||||
}
|
}
|
||||||
"DeleteConfirmStyle"
|
"DeleteConfirmStyle"
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user