Skip to content

Commit

Permalink
Refactor: Renamed 'LumpDir' symbolic as 'LumpIndex'
Browse files Browse the repository at this point in the history
  • Loading branch information
danij-deng committed Dec 8, 2012
1 parent 153402a commit 78fcfe6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions doomsday/engine/src/gl/gl_texmanager.cpp
Expand Up @@ -705,7 +705,7 @@ static TexSource loadSourceImage(de::Texture &tex, texturevariantspecification_t
if(source == TEXS_NONE)
{
de::Uri const &resourceUri = tex.manifest().resourceUri();
if(!resourceUri.scheme().compareWithoutCase("LumpDir"))
if(!resourceUri.scheme().compareWithoutCase("LumpIndex"))
{
try
{
Expand Down Expand Up @@ -743,7 +743,7 @@ static TexSource loadSourceImage(de::Texture &tex, texturevariantspecification_t
if(source == TEXS_NONE)
{
de::Uri const &resourceUri = tex.manifest().resourceUri();
if(!resourceUri.scheme().compareWithoutCase("LumpDir"))
if(!resourceUri.scheme().compareWithoutCase("LumpIndex"))
{
try
{
Expand Down Expand Up @@ -796,7 +796,7 @@ static TexSource loadSourceImage(de::Texture &tex, texturevariantspecification_t
if(source == TEXS_NONE)
{
de::Uri const &resourceUri = tex.manifest().resourceUri();
if(!resourceUri.scheme().compareWithoutCase("LumpDir"))
if(!resourceUri.scheme().compareWithoutCase("LumpIndex"))
{
try
{
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/src/resource/r_data.cpp
Expand Up @@ -58,7 +58,7 @@ static QList<PatchName> patchNames;
*/
static inline de::Uri composeLumpIndexResourceUrn(lumpnum_t lumpNum)
{
return de::Uri("LumpDir", Path(String("%1").arg(lumpNum)));
return de::Uri("LumpIndex", Path(String("%1").arg(lumpNum)));
}

void R_InitSystemTextures()
Expand Down

0 comments on commit 78fcfe6

Please sign in to comment.