diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-11 11:51:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-11 11:51:59 +0200 |
commit | bc75ef5ad091d93ce29868df4a8956c403e5c63b (patch) | |
tree | 2a75e331f3e7123256168872a79705042b8e7a42 | |
parent | 9ec33eaee2757428958fd8b437929652c2b3e0f8 (diff) | |
parent | 6516098d1216be74d6caba73d56eaaf7d30812fd (diff) |
Merge pull request #29508 from Calinou/doc-hex-constant-uppercase
Use uppercase for all hexadecimal constants in the editor help
-rw-r--r-- | editor/editor_help.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index 5917869988..df25b08b4c 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -203,8 +203,9 @@ String EditorHelp::_fix_constant(const String &p_constant) const { if (p_constant.strip_edges() == "2147483647") { return "0x7FFFFFFF"; } + if (p_constant.strip_edges() == "1048575") { - return "0xfffff"; + return "0xFFFFF"; } return p_constant; |