- 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 committed by drfrag
parent 3aa615e960
commit 9b84a97a1d

View file

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