1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Use uppercase for all hexadecimal constants in the editor help

This commit is contained in:
Hugo Locurcio
2019-06-05 16:44:20 +02:00
parent 197b65f32a
commit 6516098d12

View File

@@ -203,8 +203,9 @@ String EditorHelp::_fix_constant(const String &p_constant) const {
if (p_constant.strip_edges() == "2147483647") { if (p_constant.strip_edges() == "2147483647") {
return "0x7FFFFFFF"; return "0x7FFFFFFF";
} }
if (p_constant.strip_edges() == "1048575") { if (p_constant.strip_edges() == "1048575") {
return "0xfffff"; return "0xFFFFF";
} }
return p_constant; return p_constant;