mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2024-11-16 01:02:03 +00:00
- Fixed: PO_Busy() did not check for a NULL return from GetPolyobj().
- Fixed two problems with printfs from the net controller stuff: one of them is totally valid, and the other is GCC not being as nice as VC++. - Fixed: The case for defining SAVESIG when SVN_REVISION_NUMBER == 0 did not work for GCC (and presumably VC++, though I never ran into that case with it) because it tried to stringify something that wasn't a macro argument. SVN r762 (trunk)
This commit is contained in:
parent
d412266bfc
commit
0dccb97819
6 changed files with 16 additions and 8 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
February 21, 2008
|
||||||
|
- Fixed: PO_Busy() did not check for a NULL return from GetPolyobj().
|
||||||
|
- Fixed two problems with printfs from the net controller stuff: one of them
|
||||||
|
is totally valid, and the other is GCC not being as nice as VC++.
|
||||||
|
- Fixed: The case for defining SAVESIG when SVN_REVISION_NUMBER == 0 did not
|
||||||
|
work for GCC (and presumably VC++, though I never ran into that case with
|
||||||
|
it) because it tried to stringify something that wasn't a macro argument.
|
||||||
|
|
||||||
February 20, 2008 (Changes by Graf Zahl)
|
February 20, 2008 (Changes by Graf Zahl)
|
||||||
- Added a modified version of Karate Chris's submission for killing specific
|
- Added a modified version of Karate Chris's submission for killing specific
|
||||||
monsters with the 'Kill' ccmd.
|
monsters with the 'Kill' ccmd.
|
||||||
|
|
|
@ -2496,7 +2496,7 @@ static void Network_Controller (int playernum, bool add)
|
||||||
|
|
||||||
if (!playeringame[playernum])
|
if (!playeringame[playernum])
|
||||||
{
|
{
|
||||||
Printf ("Player (%d) not found!\n");
|
Printf ("Player (%d) not found!\n", playernum);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -825,7 +825,7 @@ CCMD (playerinfo)
|
||||||
int i = atoi (argv[1]);
|
int i = atoi (argv[1]);
|
||||||
userinfo_t *ui = &players[i].userinfo;
|
userinfo_t *ui = &players[i].userinfo;
|
||||||
Printf ("Name: %s\n", ui->netname);
|
Printf ("Name: %s\n", ui->netname);
|
||||||
Printf ("Team: %s (%d)\n", ui->team == TEAM_None ? "None" : teams[ui->team].name, ui->team);
|
Printf ("Team: %s (%d)\n", ui->team == TEAM_None ? "None" : teams[ui->team].name.GetChars(), ui->team);
|
||||||
Printf ("Aimdist: %d\n", ui->aimdist);
|
Printf ("Aimdist: %d\n", ui->aimdist);
|
||||||
Printf ("Color: %06x\n", ui->color);
|
Printf ("Color: %06x\n", ui->color);
|
||||||
Printf ("Skin: %s (%d)\n", skins[ui->skin].name, ui->skin);
|
Printf ("Skin: %s (%d)\n", skins[ui->skin].name, ui->skin);
|
||||||
|
|
|
@ -1545,7 +1545,7 @@ bool PO_Busy (int polyobj)
|
||||||
polyobj_t *poly;
|
polyobj_t *poly;
|
||||||
|
|
||||||
poly = GetPolyobj (polyobj);
|
poly = GetPolyobj (polyobj);
|
||||||
if (!poly->specialdata)
|
if (poly == NULL || poly->specialdata == NULL)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,7 +80,8 @@
|
||||||
#if SVN_REVISION_NUMBER == 0
|
#if SVN_REVISION_NUMBER == 0
|
||||||
// This can happen if svnrevision is not updated properly (e.g. compiling while offline)
|
// This can happen if svnrevision is not updated properly (e.g. compiling while offline)
|
||||||
#define SAVEVER MINSAVEVER
|
#define SAVEVER MINSAVEVER
|
||||||
#define SAVESIG "ZDOOMSAVE"#SAVEVER
|
#define MAKESAVESIG(x) "ZDOOMSAVE" #x
|
||||||
|
#define SAVESIG MAKESAVESIG(SAVEVER)
|
||||||
#else
|
#else
|
||||||
#define SAVEVER SVN_REVISION_NUMBER
|
#define SAVEVER SVN_REVISION_NUMBER
|
||||||
#define SAVESIG "ZDOOMSAVE"SVN_REVISION_STRING
|
#define SAVESIG "ZDOOMSAVE"SVN_REVISION_STRING
|
||||||
|
|
|
@ -225,7 +225,6 @@ bool DDrawFB::CreateResources ()
|
||||||
DDSURFACEDESC ddsd = { sizeof(ddsd), };
|
DDSURFACEDESC ddsd = { sizeof(ddsd), };
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
int bits;
|
int bits;
|
||||||
int refresh;
|
|
||||||
|
|
||||||
BufferCount = 1;
|
BufferCount = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue