Fix int overflow in EditorResourcePreview::_preview_ready
This commit is contained in:
parent
24e1039eb6
commit
ac2f68760d
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ void EditorResourcePreview::_preview_ready(const String &p_str, const Ref<Textur
|
||||||
uint64_t modified_time = 0;
|
uint64_t modified_time = 0;
|
||||||
|
|
||||||
if (p_str.begins_with("ID:")) {
|
if (p_str.begins_with("ID:")) {
|
||||||
hash = p_str.get_slicec(':', 2).to_int();
|
hash = uint32_t(p_str.get_slicec(':', 2).to_int64());
|
||||||
path = "ID:" + p_str.get_slicec(':', 1);
|
path = "ID:" + p_str.get_slicec(':', 1);
|
||||||
} else {
|
} else {
|
||||||
modified_time = FileAccess::get_modified_time(path);
|
modified_time = FileAccess::get_modified_time(path);
|
||||||
|
|
Loading…
Reference in a new issue