Skip to content

Commit

Permalink
Improved debug message about cursor hiding
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 12, 2012
1 parent 477a59e commit 0891d32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doomsday/engine/portable/src/canvas.cpp
Expand Up @@ -97,7 +97,8 @@ struct Canvas::Instance

void showCursor(bool yes)
{
LOG_DEBUG("showing cursor %b (presently visible? %b)") << yes << !cursorHidden;
LOG_DEBUG("%s cursor (presently visible? %b)")
<< (yes? "showing" : "hiding") << !cursorHidden;

if(!yes && !cursorHidden)
{
Expand Down

0 comments on commit 0891d32

Please sign in to comment.