Actions
Bug #451
closedTutorial #6 gets an Internal Error at line 250.
Start date:
08/19/2020
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
Line 250:
C$=Upper$(C$)
Actions
Added by Brian Flanagan over 4 years ago. Updated about 4 years ago.
0%
Description
Line 250:
C$=Upper$(C$)
Problem is that Choice$ was a variable passed to:
Procudure PLACE_SPRITES[C$]
...as C$. Choice$ was not initialized, so Upper$(C$) failed.
Fix: Add Choice$="" just before main Do loop.