Technically, Initialize[] is an array, not a pointer.

This commit is contained in:
2016-02-04 14:35:00 -05:00
parent 17a2b6e8fc
commit a8116b0908
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ void Mempak::Format(int32_t Control)
0x00, 0x71, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03, 0x00, 0x03,
};
memcpy(&Mempaks[Control][0], Initialize, 0x110);
memcpy(&Mempaks[Control][0], &Initialize[0], 0x110);
for (int32_t count = 0x110; count < 0x8000; count += 2)
{