mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-01 18:42:40 +00:00
hopefully fix build
This commit is contained in:
parent
9d77522efb
commit
971d24dbed
1 changed files with 2 additions and 2 deletions
|
@ -303,9 +303,9 @@ bool FurnaceGUIFileDialog::openSelectDir(String header, String path, double dpiS
|
||||||
#ifdef USE_NFD
|
#ifdef USE_NFD
|
||||||
dialogOK=false;
|
dialogOK=false;
|
||||||
#ifdef NFD_NON_THREADED
|
#ifdef NFD_NON_THREADED
|
||||||
_nfdThread(NFDState(2,header,filter,path,NULL,false),&dialogOK,&nfdResult,&hasError);
|
_nfdThread(NFDState(2,header,std::vector<String>(),path,NULL,false),&dialogOK,&nfdResult,&hasError);
|
||||||
#else
|
#else
|
||||||
dialogF=new std::thread(_nfdThread,NFDState(2,header,filter,path,NULL,false),&dialogOK,&nfdResult,&hasError);
|
dialogF=new std::thread(_nfdThread,NFDState(2,header,std::vector<String>(),path,NULL,false),&dialogOK,&nfdResult,&hasError);
|
||||||
#endif
|
#endif
|
||||||
#elif defined(ANDROID)
|
#elif defined(ANDROID)
|
||||||
hasError=true;
|
hasError=true;
|
||||||
|
|
Loading…
Reference in a new issue