Line continuation?
BlitzMax Forums/BlitzMax Beginners Area/Line continuation?| 
 | ||
| Is there a VB-alike option to allow me to change this:- Into this: - | 
| 
 | ||
| I am fairly sure that you use double punctuation to continue a line. 
SetColor((palette[TXT_COLOUR] & $FF0000) Shr 16, ..
         (palette[TXT_COLOUR] & $FF00) Shr 8, ..
          palette[TXT_COLOUR] & $FF)
 | 
| 
 | ||
| Ah, that works perfectly! Thank-you :) | 
| 
 | ||
| No problem, just glad I remembered correctly :) |