Do not change pause state when savestating

This commit is contained in:
OV2 2016-11-06 22:27:50 +01:00
parent 42f751da4a
commit bc2a3bce75
1 changed files with 0 additions and 4 deletions

View File

@ -1306,8 +1306,6 @@ void S9xFreezeToStream (STREAM stream)
char buffer[1024];
uint8 *soundsnapshot = new uint8[SPC_SAVE_STATE_BLOCK_SIZE];
S9xSetSoundMute(TRUE);
sprintf(buffer, "%s:%04d\n", SNAPSHOT_MAGIC, SNAPSHOT_VERSION);
WRITE_STREAM(buffer, strlen(buffer), stream);
@ -1443,8 +1441,6 @@ void S9xFreezeToStream (STREAM stream)
}
}
S9xSetSoundMute(FALSE);
delete [] soundsnapshot;
}