- Fixed: Trying to play a 0-length song from a wad inside a zip caused a crash.
SVN r181 (trunk)
This commit is contained in:
parent
0c62f08a58
commit
c808041337
7 changed files with 19 additions and 8 deletions
|
|
@ -1148,8 +1148,10 @@ void R_DrawSkyBoxes ()
|
|||
FirstInterestingDrawseg = InterestingDrawsegs.Size();
|
||||
|
||||
interestingStack.Push (FirstInterestingDrawseg);
|
||||
drawsegStack.Push (firstdrawseg - drawsegs);
|
||||
visspriteStack.Push (firstvissprite - vissprites);
|
||||
ptrdiff_t diffnum = firstdrawseg - drawsegs;
|
||||
drawsegStack.Push (diffnum);
|
||||
diffnum = firstvissprite - vissprites;
|
||||
visspriteStack.Push (diffnum);
|
||||
viewxStack.Push (viewx);
|
||||
viewyStack.Push (viewy);
|
||||
viewzStack.Push (viewz);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue