Correct fprintf usage.

This commit is contained in:
riccardom 2009-05-25 21:14:15 +00:00
parent 85153d0f31
commit 0de92a1a4d
1 changed files with 1 additions and 1 deletions

View File

@ -867,7 +867,7 @@ void BackupDevice::flush()
write32le(addr_size,outf);
write32le(0,outf); //save memory size
write32le(0,outf); //version number
fprintf(outf,kDesmumeSaveCookie); //this is what we'll use to recognize the desmume format save
fprintf(outf, "%s", kDesmumeSaveCookie); //this is what we'll use to recognize the desmume format save
fclose(outf);