mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 13:11:33 +00:00
- Fixed: Warped textures didn't work anymore because the default speed was 0.
SVN r953 (trunk)
This commit is contained in:
parent
684b671428
commit
c95a7b7db1
2 changed files with 4 additions and 1 deletions
|
@ -1,3 +1,6 @@
|
|||
April 30, 2008 (Changes by Graf Zahl)
|
||||
- Fixed: Warped textures didn't work anymore because the default speed was 0.
|
||||
|
||||
April 30, 2008
|
||||
- Fixed: I had instrument vibrato setting the tremolo_sweep_increment value
|
||||
in the instrument loader, effectively disabling vibrato.
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
|
||||
FWarpTexture::FWarpTexture (FTexture *source)
|
||||
: SourcePic (source), Pixels (0), Spans (0), GenTime (0), Speed (0.f)
|
||||
: SourcePic (source), Pixels (0), Spans (0), GenTime (0), Speed (1.f)
|
||||
{
|
||||
CopySize(source);
|
||||
bNoDecals = source->bNoDecals;
|
||||
|
|
Loading…
Reference in a new issue