From ce4d5a5ac5204c3a791e2a1bd426c019ffa05172 Mon Sep 17 00:00:00 2001 From: Zed Date: Sun, 2 Aug 2015 16:06:38 +0200 Subject: Add symbol for "random" option in setup menus --- TemplePushing.c4s/Misc.c4d/SetupMenu.c4d/Script.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'TemplePushing.c4s/Misc.c4d/SetupMenu.c4d/Script.c') diff --git a/TemplePushing.c4s/Misc.c4d/SetupMenu.c4d/Script.c b/TemplePushing.c4s/Misc.c4d/SetupMenu.c4d/Script.c index 06459ed..33d2134 100644 --- a/TemplePushing.c4s/Misc.c4d/SetupMenu.c4d/Script.c +++ b/TemplePushing.c4s/Misc.c4d/SetupMenu.c4d/Script.c @@ -51,7 +51,7 @@ private func ShowSectionMenu() CheckPreselect(Sections[i] == section, i); } - clonk->AddMenuItem("$Random$", Format("SelectSection(%i)", Sections[Random(GetLength(Sections))]), ROCK); + clonk->AddMenuItem("$Random$", Format("SelectSection(%i)", Sections[Random(GetLength(Sections))]), SRND); } private func SelectSection(id selectedSection) @@ -73,7 +73,7 @@ private func ShowModeMenu() CheckPreselect(m[0] == mode, menuItemIndex++); } - clonk->AddMenuItem("$Random$", Format("SelectMode(%d)", Modes[Random(GetLength(Modes))][0]), ROCK); + clonk->AddMenuItem("$Random$", Format("SelectMode(%d)", Modes[Random(GetLength(Modes))][0]), SRND); clonk->AddMenuItem("$Back$", "ShowSectionMenu()", SBCK); } -- cgit v1.2.3-54-g00ecf