formatting
This commit is contained in:
+1
-3
@@ -716,21 +716,19 @@ gUnknown_08DC3A0C:: @ 8DC3A0C
|
||||
gUnknown_08DC3CD4:: @ 8DC3CD4
|
||||
.incbin "baserom.gba", 0xdc3cd4, 0x80
|
||||
|
||||
.align 2
|
||||
gIntroCopyright_Pal:: @ 8DC3D54
|
||||
.incbin "graphics/intro/copyright.gbapal"
|
||||
|
||||
.align 2
|
||||
|
||||
gIntroCopyright_Gfx:: @ 8DC3D74
|
||||
.incbin "graphics/intro/copyright.4bpp.lz"
|
||||
|
||||
.align 2
|
||||
|
||||
gIntroCopyright_Tilemap:: @ 8DC3FD4
|
||||
.incbin "graphics/intro/copyright.bin.lz"
|
||||
|
||||
.align 2
|
||||
|
||||
gUnknown_08DC4120:: @ 8DC4120
|
||||
.incbin "baserom.gba", 0xdc4120, 0x20
|
||||
|
||||
|
||||
+3
-3
@@ -149,11 +149,11 @@ char* strcpy(char *dst0, const char *src0)
|
||||
unsigned long *a1;
|
||||
const unsigned long *a2;
|
||||
|
||||
/* If SRC or DEST is unaligned, then copy bytes. */
|
||||
// If SRC or DEST is unaligned, then copy bytes.
|
||||
if(!(UNALIGNED(src) | UNALIGNED(dst)))
|
||||
{
|
||||
/* SRC and DEST are both "long int" aligned, try to do "long int"
|
||||
sized copies. */
|
||||
// SRC and DEST are both "long int" aligned, try to do "long int"
|
||||
// sized copies.
|
||||
a1 = (unsigned long *)dst;
|
||||
a2 = (unsigned long *)src;
|
||||
while(!CONTAINSNULL(*a2))
|
||||
|
||||
Reference in New Issue
Block a user