forked from KolibriOS/kolibrios
Fix build with fasm 1.71.27+
git-svn-id: svn://kolibrios.org@6830 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
d800abd154
commit
64de333a2a
@ -117,7 +117,7 @@ still:
|
||||
@@:
|
||||
cmp ah,5
|
||||
jne @f ;scale-
|
||||
mov [scale],0.7
|
||||
mov [scale], dword 0.7
|
||||
fninit
|
||||
fld [sscale]
|
||||
fmul [scale]
|
||||
@ -131,7 +131,7 @@ still:
|
||||
@@:
|
||||
cmp ah,6
|
||||
jne @f ; scale+
|
||||
mov [scale],1.3
|
||||
mov [scale], dword 1.3
|
||||
fninit
|
||||
fld [sscale]
|
||||
fmul [scale]
|
||||
@ -2097,4 +2097,4 @@ align 16
|
||||
screen rb SIZE_X * SIZE_Y * 3 ; screen buffer
|
||||
Z_buffer rb SIZE_X * SIZE_Y * 4
|
||||
memStack rb 1000 ;memory area for stack
|
||||
I_END:
|
||||
I_END:
|
||||
|
@ -415,7 +415,7 @@ _BGIfont_Freetext:
|
||||
and [deform],0
|
||||
test eax,BGI_ITALIC
|
||||
jz .norm
|
||||
mov [deform],0.4
|
||||
mov [deform], dword 0.4
|
||||
.norm:
|
||||
mov ebp,eax
|
||||
or ebp,BGI_FREE
|
||||
|
@ -415,7 +415,7 @@ _BGIfont_Freetext:
|
||||
and [deform],0
|
||||
test eax,BGI_ITALIC
|
||||
jz .norm
|
||||
mov [deform],0.4
|
||||
mov [deform],dword 0.4
|
||||
.norm:
|
||||
mov ebp,eax
|
||||
or ebp,BGI_FREE
|
||||
|
Loading…
Reference in New Issue
Block a user