mirror of
https://git.code.sf.net/p/quake/game-source
synced 2025-04-06 07:50:49 +00:00
fix some warnings
This commit is contained in:
parent
bd4b8f5647
commit
14bd241c8e
5 changed files with 5 additions and 5 deletions
|
@ -344,7 +344,7 @@ tripping the runaway loop counter
|
|||
direct_route = FALSE;
|
||||
}
|
||||
}
|
||||
if (waypoint_thinker.@this = [waypoint_queue removeItemAtHead]) {
|
||||
if ((waypoint_thinker.@this = [waypoint_queue removeItemAtHead])) {
|
||||
local id obj = waypoint_thinker.@this;
|
||||
local IMP imp = [obj methodForSelector: @selector (waypointThink)];
|
||||
waypoint_thinker.think = (void ()) imp;
|
||||
|
|
|
@ -9,7 +9,7 @@ CPP=cpp
|
|||
CPPFLAGS=-I. -Iweapons -Imdl -Iact -Imapents
|
||||
|
||||
QFCC=qfcc
|
||||
QFCCFLAGS=-q --warn all --code v6only $(CPPFLAGS)
|
||||
QFCCFLAGS=-q --warn all,error --code v6only $(CPPFLAGS)
|
||||
|
||||
###############################################
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ void() util_map_entity_cull = {
|
|||
oldself = self;
|
||||
|
||||
self = world;
|
||||
while (self = find(self, targetname, self.target)) {
|
||||
while ((self = find(self, targetname, self.target))) {
|
||||
if (self == oldself)
|
||||
continue;
|
||||
|
||||
|
|
|
@ -76,7 +76,7 @@ void() SZ_init = {
|
|||
sv_signon_buf_remaining = SV_SIGNON_BUFFERS;
|
||||
sv_signon_remaining = SV_MAX_DATAGRAM;
|
||||
|
||||
while (self = nextent(self))
|
||||
while ((self = nextent(self)))
|
||||
SZ_GetSpace_signon(SIZEOF_BASELINE);
|
||||
self = world;
|
||||
};
|
||||
|
|
|
@ -39,7 +39,7 @@ void() main = {
|
|||
/* Must be first. */
|
||||
max_clients = 0;
|
||||
walk = world;
|
||||
while (walk = nextent(walk)) max_clients++;
|
||||
while ((walk = nextent(walk))) max_clients++;
|
||||
|
||||
sv_spawning = SV_FRAMES_BEFORE_SPAWN;
|
||||
|
||||
|
|
Loading…
Reference in a new issue