You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-18 14:21:41 +00:00
Use uppercase for all hexadecimal constants in the editor help
(cherry picked from commit 6516098d12)
This commit is contained in:
committed by
Rémi Verschelde
parent
dce7311aa5
commit
d871ac670d
@@ -175,8 +175,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;
|
||||
|
||||
Reference in New Issue
Block a user