Technically, Initialize[] is an array, not a pointer.
This commit is contained in:
parent
17a2b6e8fc
commit
a8116b0908
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue