summaryrefslogtreecommitdiff
path: root/src/rom4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rom4.c')
-rw-r--r--src/rom4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rom4.c b/src/rom4.c
index fe5b7cb45..6946cec03 100644
--- a/src/rom4.c
+++ b/src/rom4.c
@@ -1572,12 +1572,12 @@ void sub_8054BA8(void)
addr = (void *)VRAM;
size = 0x18000;
- while(1)
+ while (1)
{
DmaFill16(3, 0, addr, 0x1000);
addr += 0x1000;
size -= 0x1000;
- if(size <= 0x1000)
+ if (size <= 0x1000)
{
DmaFill16(3, 0, addr, size);
break;