Skip to content

Commit

Permalink
Fixed: Do not warning about missing materials while initializing flats
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Aug 26, 2012
1 parent 0d705a4 commit 77f20eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/engine/portable/src/r_data.c
Expand Up @@ -2193,7 +2193,7 @@ void R_InitFlatTextures(void)

{
Uri* uri = composeFlatUri(F_LumpName(lumpNum));
if(Textures_ResolveUri(uri) == NOTEXTUREID) // A new flat?
if(Textures_ResolveUri2(uri, true/*quiet please*/) == NOTEXTUREID) // A new flat?
{
/**
* Kludge Assume 64x64 else when the flat is loaded it will inherit the
Expand Down

0 comments on commit 77f20eb

Please sign in to comment.