]> git.sur5r.net Git - cc65/blobdiff - libsrc/mouse/mouse_show.s
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / mouse / mouse_show.s
index 3941e9dc95b5860268da6dbd3f4b777759aeb3a1..652d154af405e740422ca08a1b33ad844aa803da 100644 (file)
@@ -9,11 +9,11 @@
 
 .proc   _mouse_show
 
-        lda            _mouse_hidden           ; Mouse visible?
-       beq     @L1                     ; Jump if yes
-               dec     _mouse_hidden           ; Set the flag
-       bne     @L1                     ; Jump if still invisible
+        lda     _mouse_hidden           ; Mouse visible?
+        beq     @L1                     ; Jump if yes
+        dec     _mouse_hidden           ; Set the flag
+        bne     @L1                     ; Jump if still invisible
         jmp     mouse_show              ; Call the driver
-@L1:   rts
+@L1:    rts
 
 .endproc