summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorhurikhan <m4r10.5ch14ck@gmail.com>2015-01-11 15:47:27 +0800
committerhurikhan <m4r10.5ch14ck@gmail.com>2015-01-11 15:47:27 +0800
commitac558c15eaeb45b3e7ae2604e26ca1dffb60b779 (patch)
tree2f46fa9ed27ea108717fc151e8635c6471213428 /main
parent291d7992ceae487a63dc2d6eb1ee2da7312017c5 (diff)
get_window_position() + set_window_position() added
Diffstat (limited to 'main')
-rw-r--r--main/main.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/main/main.cpp b/main/main.cpp
index b6638a3ad0..27d7d97e85 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -609,10 +609,6 @@ Error Main::setup(const char *execpath,int argc, char *argv[],bool p_second_phas
if (video_driver=="") // specified in engine.cfg
video_driver=_GLOBAL_DEF("display/driver",Variant((const char*)OS::get_singleton()->get_video_driver_name(0)));
- if (!force_res && use_custom_res && globals->has("display/x"))
- video_mode.width=globals->get("display/y");
- if (!force_res && use_custom_res && globals->has("display/width"))
- video_mode.width=globals->get("display/width");
if (!force_res && use_custom_res && globals->has("display/width"))
video_mode.width=globals->get("display/width");
if (!force_res &&use_custom_res && globals->has("display/height"))
@@ -631,8 +627,6 @@ Error Main::setup(const char *execpath,int argc, char *argv[],bool p_second_phas
}
}
- GLOBAL_DEF("display/x",video_mode.x);
- GLOBAL_DEF("display/y",video_mode.y);
GLOBAL_DEF("display/width",video_mode.width);
GLOBAL_DEF("display/height",video_mode.height);
GLOBAL_DEF("display/fullscreen",video_mode.fullscreen);