mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 19:20:38 +00:00
a.nasm: add 'dword' to some stores in the nonpow2 routines for consistency.
git-svn-id: https://svn.eduke32.com/eduke32@3032 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
52ed3e1a66
commit
ddc22ee395
1 changed files with 3 additions and 3 deletions
|
@ -721,7 +721,7 @@ CDECLBEGINSET 6
|
||||||
mov ebp, edx ; ebp: vertical place
|
mov ebp, edx ; ebp: vertical place
|
||||||
mov ebx, eax ; ebx: vertical increment
|
mov ebx, eax ; ebx: vertical increment
|
||||||
mov eax, dword [globaltilesizy]
|
mov eax, dword [globaltilesizy]
|
||||||
mov [np2_beginvline+1], eax
|
mov dword [np2_beginvline+1], eax
|
||||||
inc ecx
|
inc ecx
|
||||||
np2_fixchain1a: sub edi, 320
|
np2_fixchain1a: sub edi, 320
|
||||||
np2_beginvline: ; +1: y tile size
|
np2_beginvline: ; +1: y tile size
|
||||||
|
@ -775,7 +775,7 @@ CDECLBEGINSET 6
|
||||||
mov ebp, edx ; ebp: vertical place
|
mov ebp, edx ; ebp: vertical place
|
||||||
mov ebx, eax ; ebx: vertical increment
|
mov ebx, eax ; ebx: vertical increment
|
||||||
mov eax, dword [globaltilesizy]
|
mov eax, dword [globaltilesizy]
|
||||||
mov [mnp2_beginvline+1], eax
|
mov dword [mnp2_beginvline+1], eax
|
||||||
mnp2_beginvline: ; +1: y tile size
|
mnp2_beginvline: ; +1: y tile size
|
||||||
mov eax, 0x00000123
|
mov eax, 0x00000123
|
||||||
mul ebp
|
mul ebp
|
||||||
|
@ -912,7 +912,7 @@ CDECLBEGINSET 6
|
||||||
mov ebx, eax ; ebx: vertical increment
|
mov ebx, eax ; ebx: vertical increment
|
||||||
inc ecx
|
inc ecx
|
||||||
mov eax, dword [globaltilesizy]
|
mov eax, dword [globaltilesizy]
|
||||||
mov [tnp2_beginvline+1], eax
|
mov dword [tnp2_beginvline+1], eax
|
||||||
tnp2_beginvline: ; +1: y tile size
|
tnp2_beginvline: ; +1: y tile size
|
||||||
mov eax, 0x00000123
|
mov eax, 0x00000123
|
||||||
mul ebp
|
mul ebp
|
||||||
|
|
Loading…
Reference in a new issue