forked from KolibriOS/kolibrios
arcanii: window title corrected
git-svn-id: svn://kolibrios.org@2683 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
6e8d4b2a4d
commit
d2c5967771
@ -1,11 +1,8 @@
|
|||||||
VERSION equ 'ARCANOID II v. 0.30'
|
|
||||||
; by jj
|
; by jj
|
||||||
; (jacek jerzy malinowski)
|
; (jacek jerzy malinowski)
|
||||||
;
|
;
|
||||||
; contact: 4nic8@casiocalc.org
|
; contact: 4nic8@casiocalc.org
|
||||||
;----------------------------------------
|
;----------------------------------------
|
||||||
; Compile with FASM for Menuet
|
|
||||||
;----------------------------------------
|
|
||||||
|
|
||||||
include 'lang.inc'
|
include 'lang.inc'
|
||||||
include '../../../macros.inc'
|
include '../../../macros.inc'
|
||||||
@ -417,7 +414,7 @@ intro: ; INTRO ;
|
|||||||
jne @f
|
jne @f
|
||||||
ret
|
ret
|
||||||
@@:
|
@@:
|
||||||
label 140,200,VERSION,0x100000FF
|
label 146,200,'ARCANOID II v0.30',0x100000FF
|
||||||
label 120,220,'by jj (jacek jerzy malinowski)',0x050505
|
label 120,220,'by jj (jacek jerzy malinowski)',0x050505
|
||||||
label 100,240,'press SPACE to start a new game',0x10FF0800
|
label 100,240,'press SPACE to start a new game',0x10FF0800
|
||||||
label 15,240,'F1 + delay',0xFFA8FF
|
label 15,240,'F1 + delay',0xFFA8FF
|
||||||
@ -802,19 +799,19 @@ ret
|
|||||||
|
|
||||||
draw_window:
|
draw_window:
|
||||||
|
|
||||||
startwd
|
mcall 12,1
|
||||||
|
mcall 0,<100,X_SIZE+8>,<100,Y_SIZE+21>,0x14ffffff, , VERSION
|
||||||
|
|
||||||
window 100,100,X_SIZE+8,Y_SIZE+21,0x04ffffff
|
|
||||||
label 8,8,VERSION,cl_White+font_Big
|
label 200,8,'LIVES:',0x10ffffff
|
||||||
label 200,8,'LIVES:',0x10ddeeff
|
outcount dword [lives],250,8,0x10ffffff,65536
|
||||||
outcount dword [lives],250,8,0x10ddeeff,65536
|
|
||||||
|
|
||||||
cmp [is_rolled_up], 1
|
cmp [is_rolled_up], 1
|
||||||
je @f
|
je @f
|
||||||
call fast_gfx
|
call fast_gfx
|
||||||
@@:
|
@@:
|
||||||
|
|
||||||
endwd
|
mcall 12,2
|
||||||
|
|
||||||
ret
|
ret
|
||||||
|
|
||||||
@ -822,6 +819,8 @@ draw_window:
|
|||||||
; DATA AREA ;####################
|
; DATA AREA ;####################
|
||||||
;-----------;####################
|
;-----------;####################
|
||||||
|
|
||||||
|
VERSION db 'ARCANOID II', 0
|
||||||
|
|
||||||
is_rolled_up dd 0
|
is_rolled_up dd 0
|
||||||
|
|
||||||
lives dd 5
|
lives dd 5
|
||||||
|
Loading…
Reference in New Issue
Block a user