Skip to content

Commit

Permalink
Fixed: Passing a de::String to Con_Message() instead of char*
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 31, 2013
1 parent a3f4690 commit 056f9e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doomsday/client/src/ui/window.cpp
Expand Up @@ -681,7 +681,8 @@ static void useAppliedGeometryForWindows()
DEBUG_Message(("Using applied geometry: (%i,%i) %s",
win->appliedGeometry.x(),
win->appliedGeometry.y(),
Vector2i(win->appliedGeometry.width(), win->appliedGeometry.height()).asText()));
Vector2i(win->appliedGeometry.width(),
win->appliedGeometry.height()).asText().toLatin1().constData()));
win->widget->setGeometry(win->appliedGeometry);
}

Expand Down

0 comments on commit 056f9e1

Please sign in to comment.