1
0
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:
mrdudz
2022-04-17 16:06:22 +02:00
parent 3c1641e3e3
commit f8f901b05e
212 changed files with 432 additions and 432 deletions

View File

@@ -15,7 +15,7 @@
; */
;
.proc _tgi_gettextheight
.proc _tgi_gettextheight
ldy _tgi_font
bne @L2 ; Jump if vector font

View File

@@ -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

View File

@@ -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

View File

@@ -125,7 +125,7 @@ VectorFont:
jsr MoveCursor ; Move the graphics cursor
; Next char in string
inc text
bne @L1
inc text+1

View File

@@ -269,7 +269,7 @@ abs:
; A/Y := abs (A/Y)
cpy #$00
bpl :+
; A/Y := neg (A/Y)
neg: clc
eor #$FF