mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +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
cb93e00aaf
commit
e48edf6199
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