mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-02-17 09:42:36 +00:00
Turn a Warning() in R_FlareDeform into a DPrintf()
The warning is printed on every frame in some areas and slows down the whole game. Use DPrintf() instead to prevent the slowdown.
This commit is contained in:
parent
bf30c8216a
commit
8370a7d213
1 changed files with 1 additions and 1 deletions
|
@ -519,7 +519,7 @@ static void R_FlareDeform( drawSurf_t *surf ) {
|
||||||
|
|
||||||
if ( tri->numVerts != 4 || tri->numIndexes != 6 ) {
|
if ( tri->numVerts != 4 || tri->numIndexes != 6 ) {
|
||||||
//FIXME: temp hack for flares on tripleted models
|
//FIXME: temp hack for flares on tripleted models
|
||||||
common->Warning( "R_FlareDeform: not a single quad" );
|
common->DPrintf( "R_FlareDeform: not a single quad\n" );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue