Skip to content

Commit

Permalink
Added a verbose level 2 message for R_LoadModel
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 7, 2005
1 parent 4747c61 commit acc0b58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doomsday/Src/r_model.c
Expand Up @@ -238,7 +238,7 @@ int R_FindModelFile(const char *filename, char *outfn)

if(!filename || !filename[0])
return false;

// DMD takes precedence over MD2.
strcpy(buf, filename);
M_GetFileExt(buf, ext);
Expand Down Expand Up @@ -611,6 +611,8 @@ int R_LoadModel(char *origfn)
if(!origfn[0])
return 0; // No model specified.

VERBOSE2(Con_Message("R_LoadModel: %s\n", origfn));

if(!R_FindModelFile(origfn, filename))
{
R_MissingModel(origfn);
Expand Down

0 comments on commit acc0b58

Please sign in to comment.