mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 17:41:19 +00:00
- fixed compilation with MSVC
src\gamedata\resourcefiles\resourcefile.h(77): error C4716: 'FResourceLump::FillCache': must return a value
This commit is contained in:
parent
3aa615e960
commit
9b84a97a1d
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ struct FResourceLump
|
|||
int ReleaseCache();
|
||||
|
||||
protected:
|
||||
virtual int FillCache() {}
|
||||
virtual int FillCache() { return -1; }
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue