padding by saying + 0 for consistency

This commit is contained in:
2016-02-04 14:40:45 -05:00
parent ebbecdef7e
commit 3dbe8d1494
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ void Mempak::Format(int32_t Control)
for (size_t count = sizeof(Initialize); count < 128 * 256; count += 2) for (size_t count = sizeof(Initialize); count < 128 * 256; count += 2)
{ {
Mempaks[Control][count] = 0x00; Mempaks[Control][count + 0] = 0x00;
Mempaks[Control][count + 1] = 0x03; Mempaks[Control][count + 1] = 0x03;
} }
} }