be consistent about uncached video image addresses
This commit is contained in:
parent
b4f8be199f
commit
d32e009442
1 changed files with 2 additions and 2 deletions
4
main.asm
4
main.asm
|
@ -134,12 +134,12 @@ MainLoop:
|
|||
beqz s1, SwitchToAlt
|
||||
nop
|
||||
SwitchToMain:
|
||||
la t0, VIDEO_C_IMAGE_ALT
|
||||
la t0, VIDEO_C_IMAGE_ALT | UNCACHED
|
||||
sw t0, VI_ORIGIN(a0)
|
||||
j Start3D
|
||||
lli s1, 0
|
||||
SwitchToAlt:
|
||||
la t0, VIDEO_C_IMAGE
|
||||
la t0, VIDEO_C_IMAGE | UNCACHED
|
||||
sw t0, VI_ORIGIN(a0)
|
||||
j Start3D
|
||||
lli s1, 1
|
||||
|
|
Loading…
Reference in a new issue