8 lines
214 B
Text
8 lines
214 B
Text
Macro Assert(TEST,MSG="Assert: ")
|
|
CompilerIf #PB_Compiler_Debugger
|
|
If Not (TEST)
|
|
Debug MSG+" Line="+Str(#PB_Compiler_Line)+" in "+#PB_Compiler_File
|
|
CallDebugger
|
|
EndIf
|
|
CompilerEndIf
|
|
EndMacro
|