Skip to content

Commit

Permalink
Unix: Tested running without X11 displaymode support
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Mar 24, 2012
1 parent 928d6c7 commit 5d49530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doomsday/engine/portable/src/window.cpp
Expand Up @@ -292,8 +292,8 @@ struct ddwindow_s
geometry.size.width = rect.width();
geometry.size.height = rect.height();

Con_Message("Window geometry: %i,%i %ix%i (max? %i)\n", geometry.origin.x, geometry.origin.y,
geometry.size.width, geometry.size.height, (flags & DDWF_MAXIMIZE) != 0);
DEBUG_VERBOSE_Message(("Window geometry: %i,%i %ix%i (max? %i)\n", geometry.origin.x, geometry.origin.y,
geometry.size.width, geometry.size.height, (flags & DDWF_MAXIMIZE) != 0));
}

void setFlag(int flag, bool set = true)
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/unix/src/displaymode_x11.cpp
Expand Up @@ -87,5 +87,5 @@ static int findMode(const DisplayMode* mode)

int DisplayMode_Native_Change(const DisplayMode* mode, boolean shouldCapture)
{
return false;
return true;
}

0 comments on commit 5d49530

Please sign in to comment.