Skip to content

Commit

Permalink
Save state fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamLCobb committed May 1, 2016
1 parent c426fd8 commit 3d2dfcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desmume/src/GPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2678,7 +2678,7 @@ void gpu_savestate(EMUFILE* os)
//version
write32le(1,os);

os->fwrite((char*)GPU_screen[screenNum],sizeof(GPU_screen));
os->fwrite((char*)GPU_screen[screenNum],sizeof(GPU_screen[0]));

write32le(MainScreen.gpu->affineInfo[0].x,os);
write32le(MainScreen.gpu->affineInfo[0].y,os);
Expand Down

0 comments on commit 3d2dfcf

Please sign in to comment.