- fixed compilation with MSVC

src\gamedata\resourcefiles\resourcefile.h(77): error C4716:  'FResourceLump::FillCache': must return a value
This commit is contained in:
alexey.lysiuk 2019-09-13 17:35:31 +03:00
parent cb93e00aaf
commit e48edf6199

View file

@ -74,7 +74,7 @@ struct FResourceLump
int ReleaseCache(); int ReleaseCache();
protected: protected:
virtual int FillCache() {} virtual int FillCache() { return -1; }
}; };