Small fix in the full deserialization routine

This commit is contained in:
Sergio Martin 2024-01-22 17:01:33 +01:00
parent fdbc8733cf
commit 301d98af5b
1 changed files with 1 additions and 0 deletions

View File

@ -677,6 +677,7 @@ size_t serializeLiteState(uint8_t *buffer) const
blockSize = ppu.chr_size; blockSize = ppu.chr_size;
memcpy((void *)ppu.impl->chr_ram, &buffer[pos], blockSize); memcpy((void *)ppu.impl->chr_ram, &buffer[pos], blockSize);
pos += blockSize; pos += blockSize;
ppu.all_tiles_modified();
} }
} }