mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
- Fixed: savepatchsize was declared incorrectly in d_dehacked.cpp:DoInclude().
SVN r2040 (trunk)
This commit is contained in:
parent
5aa673baad
commit
735294884e
2 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
|||
December 24, 2009
|
||||
- Fixed: savepatchsize was declared incorrectly in d_dehacked.cpp:DoInclude().
|
||||
- Changed AFastProjectile::Effect() so that it sets the spawned trail to face
|
||||
same direction as the projectile.
|
||||
|
||||
|
|
|
@ -2205,8 +2205,8 @@ static int PatchStrings (int dummy)
|
|||
static int DoInclude (int dummy)
|
||||
{
|
||||
char *data;
|
||||
int savedversion, savepversion;
|
||||
char *savepatchfile, *savepatchpt, *savepatchname, savepatchsize;
|
||||
int savedversion, savepversion, savepatchsize;
|
||||
char *savepatchfile, *savepatchpt, *savepatchname;
|
||||
|
||||
if (including)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue