Merge pull request #22119 from char0xff/doc_config

Fix mistake in ConfigFile.xml
This commit is contained in:
Rémi Verschelde 2018-09-17 13:48:32 +02:00 committed by GitHub
commit 7ffeabf6bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@
var err = config.load("user://settings.cfg")
if err == OK: # if not, something went wrong with the file loading
# Look for the display/width pair, and default to 1024 if missing
var screen_width = get_value("display", "width", 1024)
var screen_width = config.get_value("display", "width", 1024)
# Store a variable if and only if it hasn't been defined yet
if not config.has_section_key("audio", "mute"):
config.set_value("audio", "mute", false)