DREAMWEB: Fix namesToOld/oldToNames
They only saved the first four savegame descriptions. (Bug from the original game.)
This commit is contained in:
parent
cd44631ffd
commit
b8d18d8ba8
1 changed files with 2 additions and 2 deletions
|
@ -218,11 +218,11 @@ void DreamGenContext::saveGame() {
|
|||
}
|
||||
|
||||
void DreamGenContext::namesToOld() {
|
||||
memcpy(getSegment(data.word(kBuffers)).ptr(kZoomspace, 0), data.ptr(kSavenames, 0), 17*4);
|
||||
memcpy(getSegment(data.word(kBuffers)).ptr(kZoomspace, 0), data.ptr(kSavenames, 0), 17*7);
|
||||
}
|
||||
|
||||
void DreamGenContext::oldToNames() {
|
||||
memcpy(data.ptr(kSavenames, 0), getSegment(data.word(kBuffers)).ptr(kZoomspace, 0), 17*4);
|
||||
memcpy(data.ptr(kSavenames, 0), getSegment(data.word(kBuffers)).ptr(kZoomspace, 0), 17*7);
|
||||
}
|
||||
|
||||
void DreamGenContext::saveLoad() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue