mirror of
https://github.com/godotengine/godot-docs.git
synced 2025-12-31 17:49:03 +03:00
Fix code sample in CPU optimization
This commit is contained in:
@@ -101,7 +101,7 @@ the following:
|
||||
update_enemies()
|
||||
|
||||
var time_end = Time.get_ticks_usec()
|
||||
print("update_enemies() took %d microseconds" % time_end - time_start)
|
||||
print("update_enemies() took %d microseconds" % (time_end - time_start))
|
||||
|
||||
.. code-tab:: csharp
|
||||
|
||||
|
||||
Reference in New Issue
Block a user