Skip to content

Commit

Permalink
Build fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
thor2016 committed May 5, 2024
1 parent 4e57ca4 commit 4b36de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/Qt/NetPlay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1970,7 +1970,7 @@ void NetPlayClient::clientProcessMessage( void *msgBuf, size_t msgSize )

QFile tmpFile( tempPath );
//tmpFile.setFileTemplate(QDir::tempPath() + QString("/tmpRom_XXXXXX.nes"));
tmpFile.open(QIODeviceBase::ReadWrite);
tmpFile.open(QIODevice::ReadWrite);
QString filepath = tmpFile.fileName();
printf("Dumping Temp Rom to: %s\n", tmpFile.fileName().toLocal8Bit().constData());
tmpFile.write( romData, msgSize );
Expand Down

0 comments on commit 4b36de6

Please sign in to comment.