You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 15 - A nice use of C% but since it runs before C% is defined and since C% is 0 by default, the colours used on a freshly reset machine are black on black. Took me ages to work out what was happening because I kept thinking the emulator had crashed and so I reloaded it which rest C% back to 0 again. Ignoring the problem with similar colours (a 16 colour mode will suffer less) you still need to ensure that the two random values are not the same or you could end up printing text in the same colour as the background.
Lines 25-27 a nice use of system variables : They need to come after the mode definition but before you use them.
Line 30 Has an extra S in POSITIVE. (so -33 should become -32)
Lines 130,190, 240, 290
As suspected these are all 40 characters or over. Fixable in line 800?
Line 240 is missing an A after I AM
Line 800 If you want to keep the existing affirmation string lengths, depending on the chosen mode, you will have to split them over two lines remembering to break them at a space.
e.g. Try to keep the strings of a similar length, try breaking at the first space after string length/2.
How about using MODE 7 instead of one of the others? Not as many colours but you can use double height etc :)
The text was updated successfully, but these errors were encountered:
Line 15 - A nice use of C% but since it runs before C% is defined and since C% is 0 by default, the colours used on a freshly reset machine are black on black. Took me ages to work out what was happening because I kept thinking the emulator had crashed and so I reloaded it which rest C% back to 0 again. Ignoring the problem with similar colours (a 16 colour mode will suffer less) you still need to ensure that the two random values are not the same or you could end up printing text in the same colour as the background.
Lines 25-27 a nice use of system variables : They need to come after the mode definition but before you use them.
Line 30 Has an extra S in POSITIVE. (so -33 should become -32)
Lines 130,190, 240, 290
As suspected these are all 40 characters or over. Fixable in line 800?
Line 240 is missing an A after I AM
Line 800 If you want to keep the existing affirmation string lengths, depending on the chosen mode, you will have to split them over two lines remembering to break them at a space.
e.g. Try to keep the strings of a similar length, try breaking at the first space after string length/2.
How about using MODE 7 instead of one of the others? Not as many colours but you can use double height etc :)
The text was updated successfully, but these errors were encountered: