diff options
author | camthesaxman <cameronghall@cox.net> | 2018-01-06 00:35:48 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2018-01-06 00:35:48 -0600 |
commit | 601ec28721b250d74e7fd61300226ff07c8a710b (patch) | |
tree | ac904a0371bf85fa356fa0ced7655fbc768475df /src/main.c | |
parent | 462a0030aec788c5c1ff81ddaba555a99bcb2a84 (diff) |
remove explicit memcpy and add HEAP_SIZE constant
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 07ce07f1c..18d1abdc2 100644 --- a/src/main.c +++ b/src/main.c @@ -122,7 +122,7 @@ void AgbMain() ClearDma3Requests(); ResetBgs(); SetDefaultFontsPointer(); - InitHeap(gHeap, 0x1C000); + InitHeap(gHeap, HEAP_SIZE); gSoftResetDisabled = FALSE; |