mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +00:00
- Fixed: FWarpTexture::MakeTexture must be declared virtual so that
the FWarp2Texture version of it can be called. SVN r215 (trunk)
This commit is contained in:
parent
550d687bcf
commit
27c00bcb95
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
June 22, 2006 (Changes by Graf Zahl)
|
||||||
|
- Fixed: FWarpTexture::MakeTexture must be declared virtual so that
|
||||||
|
the FWarp2Texture version of it can be called.
|
||||||
|
|
||||||
June 22, 2006 (Changes by Graf Zahl)
|
June 22, 2006 (Changes by Graf Zahl)
|
||||||
- Fixed: The check to prevent items from being given to dead players
|
- Fixed: The check to prevent items from being given to dead players
|
||||||
didn't work properly. It has to be done in the cheat code, not in
|
didn't work properly. It has to be done in the cheat code, not in
|
||||||
|
|
|
@ -230,7 +230,7 @@ protected:
|
||||||
Span **Spans;
|
Span **Spans;
|
||||||
DWORD GenTime;
|
DWORD GenTime;
|
||||||
|
|
||||||
void MakeTexture (DWORD time);
|
virtual void MakeTexture (DWORD time);
|
||||||
};
|
};
|
||||||
|
|
||||||
// [GRB] Eternity-like warping
|
// [GRB] Eternity-like warping
|
||||||
|
|
Loading…
Reference in a new issue