summaryrefslogtreecommitdiff
path: root/src/client/clientlauncher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/clientlauncher.cpp')
-rw-r--r--src/client/clientlauncher.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/client/clientlauncher.cpp b/src/client/clientlauncher.cpp
index 051e4c242..85063ff86 100644
--- a/src/client/clientlauncher.cpp
+++ b/src/client/clientlauncher.cpp
@@ -96,15 +96,13 @@ bool ClientLauncher::run(GameParams &game_params, const Settings &cmd_args)
return true;
}
- video::IVideoDriver *video_driver = RenderingEngine::get_video_driver();
- if (video_driver == NULL) {
+ if (RenderingEngine::get_video_driver() == NULL) {
errorstream << "Could not initialize video driver." << std::endl;
return false;
}
- RenderingEngine::setXorgClassHint(video_driver->getExposedVideoData(), PROJECT_NAME_C);
- RenderingEngine::get_instance()->setWindowIcon();
-
+ RenderingEngine::get_instance()->setupTopLevelWindow(PROJECT_NAME_C);
+
/*
This changes the minimum allowed number of vertices in a VBO.
Default is 500.