Skip to content

Commit

Permalink
Resources|Models|Client: Removed a warning about model skins
Browse files Browse the repository at this point in the history
The warning was converted to a regular log entry, because at this time
we haven't yet checked if DEDs specify a custom skin for the model.

Fixes #2140
  • Loading branch information
skyjake committed Dec 26, 2015
1 parent 0954192 commit 09945a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doomsday/apps/client/src/resource/resourcesystem.cpp
Expand Up @@ -125,7 +125,7 @@ namespace internal

if(angle < 0 || angle > MAX_ANGLES)
return -1;

if(angle == 0) return 0;

if(angle <= MAX_ANGLES / 2)
Expand Down Expand Up @@ -1643,7 +1643,7 @@ DENG2_PIMPL(ResourceSystem)

if(!numFoundSkins)
{
LOG_RES_WARNING("Model \"%s\" will be rendered without a skin (none found)")
LOG_RES_MSG("No skins found for model \"%s\" (it may use a custom skin specified in a DED)")
<< NativePath(modelFilePath).pretty();
}

Expand Down Expand Up @@ -3530,7 +3530,7 @@ static QMap<dint, Record> buildSprites(QMultiMap<dint, SpriteFrameDef> const &fr
}
}
}

return frames;
}

Expand Down

0 comments on commit 09945a3

Please sign in to comment.