mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-25 13:31:37 +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
|
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
|
- Changed AFastProjectile::Effect() so that it sets the spawned trail to face
|
||||||
same direction as the projectile.
|
same direction as the projectile.
|
||||||
|
|
||||||
|
|
|
@ -2205,8 +2205,8 @@ static int PatchStrings (int dummy)
|
||||||
static int DoInclude (int dummy)
|
static int DoInclude (int dummy)
|
||||||
{
|
{
|
||||||
char *data;
|
char *data;
|
||||||
int savedversion, savepversion;
|
int savedversion, savepversion, savepatchsize;
|
||||||
char *savepatchfile, *savepatchpt, *savepatchname, savepatchsize;
|
char *savepatchfile, *savepatchpt, *savepatchname;
|
||||||
|
|
||||||
if (including)
|
if (including)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue