under HW10, on Windows 10, the command DebugPrompt() is skipped but a value is assigned to its variable, here is an example:
Code: Select all
@DISPLAY { Hidden = True }
@OPTIONS { EnableDebug = True, ConsoleMode = True }
DebugPrint("HELLO!") ; it works so OPTIONS is doing its job
@WARNING "warning" ; This works too
a=DebugPrompt("Debug prompt ?") ; <-- this is skipped!
b=DebugPrompt("Debug prompt ?") ; <-- this is skipped!
DebugPrint("A:", a, b)
ConsolePrompt("Console prompt ?") ; <-- this workConsoleMode is ininfluent, DebugPrompt() is skipped anyway.
I've the same behaviour both on script & compiled app.