mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-12-01 08:31:14 +00:00
- Cleared GCC warnings.
SVN r4159 (trunk)
This commit is contained in:
parent
6eb10a8079
commit
356bfe81e3
3 changed files with 4 additions and 4 deletions
|
@ -7856,7 +7856,7 @@ static void ShowProfileData(TArray<ProfileCollector> &profiles, long ilimit,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Module name
|
// Module name
|
||||||
mysnprintf(modname, sizeof(modname), prof->Module->GetModuleName());
|
mysnprintf(modname, sizeof(modname), "%s", prof->Module->GetModuleName());
|
||||||
|
|
||||||
// Script/function name
|
// Script/function name
|
||||||
if (functions)
|
if (functions)
|
||||||
|
@ -7932,7 +7932,7 @@ CCMD(acsprofile)
|
||||||
// If it's a name, set the sort method. We accept partial matches for
|
// If it's a name, set the sort method. We accept partial matches for
|
||||||
// options that are shorter than the sort name.
|
// options that are shorter than the sort name.
|
||||||
size_t optlen = strlen(argv[i]);
|
size_t optlen = strlen(argv[i]);
|
||||||
int j;
|
unsigned int j;
|
||||||
for (j = 0; j < countof(sort_names); ++j)
|
for (j = 0; j < countof(sort_names); ++j)
|
||||||
{
|
{
|
||||||
if (optlen < sort_match_len[j] || optlen > strlen(sort_names[j]))
|
if (optlen < sort_match_len[j] || optlen > strlen(sort_names[j]))
|
||||||
|
|
|
@ -908,7 +908,7 @@ bool PIT_CheckThing (AActor *thing, FCheckPosition &tm)
|
||||||
if (!(tm.thing->flags & MF_MISSILE) ||
|
if (!(tm.thing->flags & MF_MISSILE) ||
|
||||||
!(tm.thing->flags2 & MF2_RIP) ||
|
!(tm.thing->flags2 & MF2_RIP) ||
|
||||||
(thing->flags5 & MF5_DONTRIP) ||
|
(thing->flags5 & MF5_DONTRIP) ||
|
||||||
(tm.thing->flags6 & MF6_NOBOSSRIP) && (thing->flags2 & MF2_BOSS))
|
((tm.thing->flags6 & MF6_NOBOSSRIP) && (thing->flags2 & MF2_BOSS)))
|
||||||
{
|
{
|
||||||
if (tm.thing->flags3 & thing->flags3 & MF3_DONTOVERLAP)
|
if (tm.thing->flags3 & thing->flags3 & MF3_DONTOVERLAP)
|
||||||
{ // Some things prefer not to overlap each other, if possible
|
{ // Some things prefer not to overlap each other, if possible
|
||||||
|
|
|
@ -244,10 +244,10 @@ player_t::player_t()
|
||||||
lastkilltime(0),
|
lastkilltime(0),
|
||||||
multicount(0),
|
multicount(0),
|
||||||
spreecount(0),
|
spreecount(0),
|
||||||
|
WeaponState(0),
|
||||||
ReadyWeapon(0),
|
ReadyWeapon(0),
|
||||||
PendingWeapon(0),
|
PendingWeapon(0),
|
||||||
cheats(0),
|
cheats(0),
|
||||||
WeaponState(0),
|
|
||||||
timefreezer(0),
|
timefreezer(0),
|
||||||
refire(0),
|
refire(0),
|
||||||
inconsistant(0),
|
inconsistant(0),
|
||||||
|
|
Loading…
Reference in a new issue