mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Save all 64 bits of get_ticks_msec() in more cases
(cherry picked from commit 5dc02eb8b0)
This commit is contained in:
committed by
Rémi Verschelde
parent
fa3fc6ff0d
commit
e29126914d
@@ -58,7 +58,7 @@ void UndoRedo::_discard_redo() {
|
||||
}
|
||||
|
||||
void UndoRedo::create_action(const String &p_name, MergeMode p_mode) {
|
||||
uint32_t ticks = OS::get_singleton()->get_ticks_msec();
|
||||
uint64_t ticks = OS::get_singleton()->get_ticks_msec();
|
||||
|
||||
if (action_level == 0) {
|
||||
_discard_redo();
|
||||
|
||||
Reference in New Issue
Block a user