Fix style bug in event queue
Same fix as for1f9812ab83
Not sure if this code actually does anything though, `buffer_max_used` seems unused. (cherry picked from commitbd424d8f73
)
This commit is contained in:
parent
34e6e284db
commit
3ce0380ba4
|
@ -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…
Reference in New Issue