1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix keep screen on property path for Android/iOS/UWP

This commit is contained in:
volzhs
2018-07-16 23:09:22 +09:00
parent c0c243ac5c
commit d18235bc38
3 changed files with 3 additions and 3 deletions

View File

@@ -290,7 +290,7 @@ Error OSUWP::initialize(const VideoMode &p_desired, int p_video_driver, int p_au
if (is_keep_screen_on())
display_request->RequestActive();
set_keep_screen_on(GLOBAL_DEF("display/window/keep_screen_on", true));
set_keep_screen_on(GLOBAL_DEF("display/window/energy_saving/keep_screen_on", true));
return OK;
}