10-10-2023, 07:36 PM
why doesn't this work?
this is a simplified example from what I was doing but it produces the same syntax error. I was able to get arround the problem but this is just annoying:
Code: (Select All)
Screen _NewImage(400, 300, 32)
dm = _PrintMode
_PrintMode _KeepBackground
Print "X"
_printmode dm
this is a simplified example from what I was doing but it produces the same syntax error. I was able to get arround the problem but this is just annoying:
Code: (Select All)
Screen _NewImage(400, 300, 32)
dm = _PrintMode
_PrintMode _KeepBackground
Print "X"
Select Case dm
Case 1
_PrintMode _KeepBackground
Case 2
_PrintMode _OnlyBackground
Case 3
_PrintMode _FillBackground
End Select