Skip to content

Commit

Permalink
Fixed|Client: Build failure (illegal use of reference)
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 10, 2015
1 parent 57135b6 commit 10427ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/apps/client/src/resource/resourcesystem.cpp
Expand Up @@ -3695,7 +3695,7 @@ void ResourceSystem::initSprites()
/// @todo It should no longer be necessary to split this into two phases -ds
dint customIdx = 0;
SpriteDefs spriteDefs = buildSpriteFramesFromTextures(App_ResourceSystem().textureScheme("Sprites").index());
for(auto &it = spriteDefs.constBegin(); it != spriteDefs.constEnd(); ++it)
for(auto it = spriteDefs.constBegin(); it != spriteDefs.constEnd(); ++it)
{
// Lookup the id for the named sprite.
spritenum_t id = Def_GetSpriteNum(it.key());
Expand Down

0 comments on commit 10427ca

Please sign in to comment.