Add more descriptive error message for missing texture pages.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@378 4a71c877-e1ca-e34f-864e-861f7616d084
master
Per Inge Mathisen 2005-12-28 11:46:45 +00:00
parent 7cbcd91f70
commit 8fbafa0f4b
1 changed files with 9 additions and 1 deletions

View File

@ -165,7 +165,15 @@ int iV_GetTexture(char *filename)
} }
/* This should never happen - by now all textures should have been loaded. */ /* This should never happen - by now all textures should have been loaded. */
debug(LOG_ERROR, "iV_TexLoad: texture %s not loaded!", filename); debug(LOG_ERROR, "*** texture %s not loaded! ***", filename);
debug(LOG_ERROR, "Available texture pages in memory:");
for (i = 0; i < _TEX_INDEX; i++) {
debug(LOG_ERROR, " %02d : %s", i, _TEX_PAGE[i].name);
}
debug(LOG_ERROR, "This error probably means you did not specify for this texture");
debug(LOG_ERROR, "to be preloaded in the appropriate wrf files before referencing");
debug(LOG_ERROR, "it in some pie file. Remember that patches override several");
debug(LOG_ERROR, "standard wrf files as well.");
assert(FALSE); assert(FALSE);
return -1; return -1;
} }