mirror of
https://github.com/godotengine/godot.git
synced 2025-04-13 01:00:35 +08:00
Fix style bug in event queue
Same fix as for 1f9812ab835e97ff07f4abba23a7915e04d306c9 Not sure if this code actually does anything though, `buffer_max_used` seems unused.
This commit is contained in:
parent
ba5bc57816
commit
bd424d8f73
@ -92,7 +92,7 @@ Error EventQueue::push_call(uint32_t p_instance_ID, const StringName& p_method,
|
||||
*v=p_arg5;
|
||||
}
|
||||
|
||||
if (buffer_max_used>buffer_end);
|
||||
if (buffer_end > buffer_max_used)
|
||||
buffer_max_used=buffer_end;
|
||||
|
||||
return OK;
|
||||
|
Loading…
x
Reference in New Issue
Block a user