mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
Fixed misspelled local variable for code clarity
Specifically, tar(g)et_fps
This commit is contained in:
parent
b0be30d9ef
commit
32b52e8041
@ -1454,9 +1454,9 @@ bool Main::iteration() {
|
|||||||
OS::get_singleton()->delay_usec( OS::get_singleton()->get_frame_delay()*1000 );
|
OS::get_singleton()->delay_usec( OS::get_singleton()->get_frame_delay()*1000 );
|
||||||
}
|
}
|
||||||
|
|
||||||
int taret_fps = OS::get_singleton()->get_target_fps();
|
int target_fps = OS::get_singleton()->get_target_fps();
|
||||||
if (taret_fps>0) {
|
if (target_fps>0) {
|
||||||
uint64_t time_step = 1000000L/taret_fps;
|
uint64_t time_step = 1000000L/target_fps;
|
||||||
target_ticks += time_step;
|
target_ticks += time_step;
|
||||||
uint64_t current_ticks = OS::get_singleton()->get_ticks_usec();
|
uint64_t current_ticks = OS::get_singleton()->get_ticks_usec();
|
||||||
if (current_ticks<target_ticks) OS::get_singleton()->delay_usec(target_ticks-current_ticks);
|
if (current_ticks<target_ticks) OS::get_singleton()->delay_usec(target_ticks-current_ticks);
|
||||||
|
Loading…
Reference in New Issue
Block a user