Fix IFileSystem::RemoveSearchPath bug

This commit is contained in:
Kawe Mazidjatari 2022-05-28 16:10:52 +02:00
parent c808aa077d
commit b19cf95420

View File

@ -24,7 +24,7 @@ void IFileSystem::AddSearchPath(const char* pPath, const char* pPathID, SearchPa
bool IFileSystem::RemoveSearchPath(const char* pPath, const char* pPathID)
{
static int index = 13;
CallVFunc<void>(index, this, pPath, pPathID);
return CallVFunc<bool>(index, this, pPath, pPathID);
}
//-----------------------------------------------------------------------------