mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-28 23:43:01 +00:00
GUI: ps_fopen
This commit is contained in:
parent
132c5007fa
commit
4a131952e4
1 changed files with 1 additions and 1 deletions
|
@ -2697,7 +2697,7 @@ bool FurnaceGUI::loop() {
|
|||
case GUI_FILE_EXPORT_VGM: {
|
||||
SafeWriter* w=e->saveVGM(willExport,vgmExportLoop,vgmExportVersion);
|
||||
if (w!=NULL) {
|
||||
FILE* f=fopen(copyOfName.c_str(),"wb");
|
||||
FILE* f=ps_fopen(copyOfName.c_str(),"wb");
|
||||
if (f!=NULL) {
|
||||
fwrite(w->getFinalBuf(),1,w->size(),f);
|
||||
fclose(f);
|
||||
|
|
Loading…
Reference in a new issue