mirror of
https://github.com/cc65/cc65.git
synced 2025-08-06 08:25:54 +00:00
remove dangling spaces
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
; */
|
||||
;
|
||||
|
||||
.proc _tgi_gettextheight
|
||||
.proc _tgi_gettextheight
|
||||
|
||||
ldy _tgi_font
|
||||
bne @L2 ; Jump if vector font
|
||||
|
@@ -1,7 +1,7 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 2009-11-05
|
||||
;
|
||||
; Helper function for graphics functions: Multiply two values, one being
|
||||
; Helper function for graphics functions: Multiply two values, one being
|
||||
; an 8.8 fixed point one, and return the rounded and scaled result.
|
||||
;
|
||||
; The module has two entry points: One is C callable and expects the
|
||||
@@ -60,4 +60,4 @@ tgi_imulround:
|
||||
tya
|
||||
rts
|
||||
|
||||
|
||||
|
||||
|
@@ -17,7 +17,7 @@
|
||||
@L1: lda _tgi_curx,y
|
||||
sta tgi_clip_x1,y
|
||||
dey
|
||||
bpl @L1
|
||||
bpl @L1
|
||||
pla
|
||||
jsr tgi_linepop ; Pop x2/y2
|
||||
jmp tgi_clippedline ; Call the line clipper
|
||||
|
@@ -125,7 +125,7 @@ VectorFont:
|
||||
jsr MoveCursor ; Move the graphics cursor
|
||||
|
||||
; Next char in string
|
||||
|
||||
|
||||
inc text
|
||||
bne @L1
|
||||
inc text+1
|
||||
|
@@ -269,7 +269,7 @@ abs:
|
||||
; A/Y := abs (A/Y)
|
||||
cpy #$00
|
||||
bpl :+
|
||||
|
||||
|
||||
; A/Y := neg (A/Y)
|
||||
neg: clc
|
||||
eor #$FF
|
||||
|
Reference in New Issue
Block a user