UltimateDuetMenuSystem
UltimateDuetMenuSystem copied to clipboard
From RRF 3.5 M98 calls require quotes around the macro name
From RRF 3.5 M98 calls require quotes around the macro name. From the RRF 3.5.1 upgrade notes:
M98 now requires the P parameter to be a quoted string. Previously, in standalone mode an unquoted string was permitted. If M98 is used as the action in a 12864 display menu, enclose the filename after M98 P in two pairs of double quotes, because the entire action string is already enclosed in double quotes."
eg in 'bedLevel', line 21 is:
button R0 C0 W63 F0 H1 T"Auto Level" A"M98 P0:/menu/scripts/autoLevel.g"
it should now be:
button R0 C0 W63 F0 H1 T"Auto Level" A"M98 P""0:/menu/scripts/autoLevel.g"""