fix incorrect signature for findfirst
This commit is contained in:
parent
6223d60085
commit
012a14de69
|
@ -96,7 +96,7 @@ bool Directory::Load(const char* name)
|
|||
struct _finddata_t data; // data of current file
|
||||
|
||||
// Now put them into the file array
|
||||
size_t srchHandle = _findfirst(buf, &data);
|
||||
intptr_t srchHandle = _findfirst(buf, &data);
|
||||
delete [] buf;
|
||||
|
||||
if ( srchHandle == -1 )
|
||||
|
|
Loading…
Reference in New Issue