mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
* Rephrase broken compiler warning
This commit is contained in:
parent
10cdcdb0a1
commit
8b0f1a6737
1 changed files with 4 additions and 4 deletions
|
@ -212,10 +212,10 @@ void RE_AddRefEntityToScene( const refEntity_t *ent ) {
|
|||
return;
|
||||
}
|
||||
if ( Q_isnan(ent->origin[0]) || Q_isnan(ent->origin[1]) || Q_isnan(ent->origin[2]) ) {
|
||||
static qboolean first_time = qtrue;
|
||||
if (first_time) {
|
||||
first_time = qfalse;
|
||||
Com_Printf(S_COLOR_YELLOW "WARNING: You might have built ioquake3 with a buggy compiler!\n");
|
||||
static qboolean firstTime = qtrue;
|
||||
if (firstTime) {
|
||||
firstTime = qfalse;
|
||||
Com_DPrintf(S_COLOR_YELLOW "WARNING: RE_AddRefEntityToScene passed a refEntity which has an origin with a NaN component\n");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue