Skip to content

Commit

Permalink
Minor gcc/clang compiler warning fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
thor2016 committed Jun 9, 2024
1 parent c919de0 commit ecbfca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/movie.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void MovieRecord::dumpJoy(EMUFILE* os, uint8 joystate)

void MovieRecord::parseJoy(EMUFILE* is, uint8& joystate)
{
char buf[8];
char buf[8] = {0};
is->fread(buf,8);
joystate = 0;
for(int i=0;i<8;i++)
Expand Down

0 comments on commit ecbfca1

Please sign in to comment.