From 7f24abc455a407e84f13d75099e36db77fa8931d Mon Sep 17 00:00:00 2001 From: Bjørn Lindeijer Date: Tue, 2 Dec 2008 20:28:22 +0100 Subject: Fix background on resolutions other than 800x600 The image is now centered and a gray background is drawn behind it so that parts that are not covered by the image don't show redrawing issues. --- src/main.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp index 8f256405..279bae71 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -815,7 +815,16 @@ int main(int argc, char *argv[]) progressBar->setProgress(0.0f); } - graphics->drawImage(login_wallpaper, 0, 0); + if (graphics->getWidth() > login_wallpaper->getWidth() || + graphics->getHeight() > login_wallpaper->getHeight()) + { + graphics->setColor(gcn::Color(64, 64, 64)); + graphics->fillRectangle(gcn::Rectangle( + 0, 0, graphics->getWidth(), graphics->getHeight())); + } + graphics->drawImage(login_wallpaper, + (graphics->getWidth() - login_wallpaper->getWidth()) / 2, + (graphics->getHeight() - login_wallpaper->getHeight()) / 2); gui->draw(); graphics->updateScreen(); -- cgit v1.2.3-70-g09d2