Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 26, 2017
1 parent 224f63c commit e4d9f15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doomsday/apps/client/src/world/base/map.cpp
Expand Up @@ -3163,7 +3163,7 @@ void Map::deserializeInternalState(Reader &from, world::IThinkerMapping const &t
}
catch (Error const &er)
{
LOG_MAP_WARNING("Error when reading state of object %i: %s")
LOG_MAP_WARNING("Error when reading state of object %s: %s")
<< id << er.asText();
}

Expand Down
4 changes: 2 additions & 2 deletions doomsday/sdk/libgui/src/graphics/modeldrawable.cpp
Expand Up @@ -1413,7 +1413,7 @@ DENG2_AUDIENCE_METHOD(ModelDrawable, AboutToGLInit)
namespace internal {

static struct {
char const *text;
String const text;
ModelDrawable::TextureMap map;
} const mappings[] {
{ "diffuse", ModelDrawable::Diffuse },
Expand Down Expand Up @@ -1443,7 +1443,7 @@ String ModelDrawable::textureMapToText(TextureMap map) // static
if (mapping.map == map)
return mapping.text;
}
return "unknown";
return QStringLiteral("unknown");
}

ModelDrawable::ModelDrawable() : d(new Impl(this))
Expand Down

0 comments on commit e4d9f15

Please sign in to comment.