1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-02-11 06:40:34 +00:00

only apply in fullscreen

This commit is contained in:
Sebastian Wick 2013-07-01 04:08:26 +02:00
parent 8bdc9ff3ae
commit 72b7e113cc

View File

@ -266,15 +266,23 @@ void OgreRenderer::createWindow(const std::string &title, const WindowSettings&
params.insert(std::make_pair("FSAA", settings.fsaa)); params.insert(std::make_pair("FSAA", settings.fsaa));
params.insert(std::make_pair("vsync", settings.vsync ? "true" : "false")); params.insert(std::make_pair("vsync", settings.vsync ? "true" : "false"));
SDL_Rect display_bounds; int pos_x = SDL_WINDOWPOS_UNDEFINED,
if(SDL_GetDisplayBounds(settings.screen, &display_bounds) != 0) pos_y = SDL_WINDOWPOS_UNDEFINED;
throw std::runtime_error("Couldn't get display bounds!");
if(settings.fullscreen)
{
SDL_Rect display_bounds;
if(SDL_GetDisplayBounds(settings.screen, &display_bounds) != 0)
throw std::runtime_error("Couldn't get display bounds!");
pos_x = display_bounds.x;
pos_y = display_bounds.y;
}
// Create an application window with the following settings: // Create an application window with the following settings:
mSDLWindow = SDL_CreateWindow( mSDLWindow = SDL_CreateWindow(
"OpenMW", // window title "OpenMW", // window title
display_bounds.x, // initial x position pos_x, // initial x position
display_bounds.y, // initial y position pos_y, // initial y position
settings.window_x, // width, in pixels settings.window_x, // width, in pixels
settings.window_y, // height, in pixels settings.window_y, // height, in pixels
SDL_WINDOW_SHOWN SDL_WINDOW_SHOWN