mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
fusee: fix loader stub size alignment
This commit is contained in:
parent
e5cce0f61c
commit
578843f92c
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ SECTIONS
|
||||||
*(.dynbss)
|
*(.dynbss)
|
||||||
*(.bss .bss.* .gnu.linkonce.b.*)
|
*(.bss .bss.* .gnu.linkonce.b.*)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
. = ALIGN(16);
|
. = ALIGN(32);
|
||||||
} >data :NONE
|
} >data :NONE
|
||||||
__bss_end__ = .;
|
__bss_end__ = .;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue