minor comment tweaks

This commit is contained in:
Joshua Bell 2017-09-02 10:15:15 -07:00
parent 9271a9c8c3
commit c7d63c2157
3 changed files with 4 additions and 4 deletions

View File

@ -505,13 +505,13 @@ Current file: stf.s
00097D 1
00097D 1 .proc close_btn ; queried after close clicked to see if aborted/finished
00097D 1 00 state: .byte 0 ; 0 = aborted, 1 = clicked
00097E 1 00 00 .byte 0,0
00097E 1 00 00 .byte 0,0 ; ???
000980 1 .endproc
000980 1
000980 1 .proc query_client_params ; queried after a client click to identify target
000980 1 00 00 xcoord: .word 0
000982 1 00 00 ycoord: .word 0
000984 1 00 part: .byte 0 ; 0 = client, 1 = scroll bar, 2 = ?????
000984 1 00 part: .byte 0 ; 0 = client, 1 = vscroll, 2 = hscroll
000985 1 00 scroll: .byte 0 ; 1 = up, 2 = down, 3 = above, 4 = below, 5 = thumb
000986 1 .endproc
000986 1

Binary file not shown.

View File

@ -264,13 +264,13 @@ ycoord: .word 0
.proc close_btn ; queried after close clicked to see if aborted/finished
state: .byte 0 ; 0 = aborted, 1 = clicked
.byte 0,0
.byte 0,0 ; ???
.endproc
.proc query_client_params ; queried after a client click to identify target
xcoord: .word 0
ycoord: .word 0
part: .byte 0 ; 0 = client, 1 = scroll bar, 2 = ?????
part: .byte 0 ; 0 = client, 1 = vscroll, 2 = hscroll
scroll: .byte 0 ; 1 = up, 2 = down, 3 = above, 4 = below, 5 = thumb
.endproc