Removed (pretty inconsistently used) tab chars from source code base.

This commit is contained in:
Oliver Schmidt
2013-05-09 13:56:54 +02:00
parent 44fd1082ae
commit 85885001b1
1773 changed files with 62864 additions and 62868 deletions

View File

@@ -5,25 +5,25 @@
; void cvline (unsigned char length);
;
.export _cvlinexy, _cvline
.export _cvlinexy, _cvline
.import setscrptr
.import rvs
.import popax
.import popax
.importzp ptr2
.include "atmos.inc"
_cvlinexy:
pha ; Save the length
jsr popax ; Get X and Y
pha ; Save the length
jsr popax ; Get X and Y
sta CURS_Y ; Store Y
stx CURS_X ; Store X
pla ; Restore the length and run into _cvline
pla ; Restore the length and run into _cvline
_cvline:
tax ; Is the length zero?
beq @L9 ; Jump if done
tax ; Is the length zero?
beq @L9 ; Jump if done
@L1: jsr setscrptr ; Set ptr2 to screen, won't use X
lda #'|'
ora rvs
@@ -31,6 +31,6 @@ _cvline:
inc CURS_Y
@L2: dex
bne @L1
@L9: rts
@L9: rts