Merge pull request #32123 from qarmin/fix_int_overflow
Fix int overflow in EditorResourcePreview::_preview_ready
This commit is contained in:
commit
54eb4bce5f
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;
|
||||
|
||||
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);
|
||||
} else {
|
||||
modified_time = FileAccess::get_modified_time(path);
|
||||
|
|
Loading…
Reference in a new issue