get_target_fps and set_target_fps now both use an int
This commit is contained in:
parent
e08b6c9a9c
commit
a066f896d8
2 changed files with 2 additions and 2 deletions
|
@ -2585,7 +2585,7 @@ void _Engine::set_target_fps(int p_fps) {
|
||||||
Engine::get_singleton()->set_target_fps(p_fps);
|
Engine::get_singleton()->set_target_fps(p_fps);
|
||||||
}
|
}
|
||||||
|
|
||||||
float _Engine::get_target_fps() const {
|
int _Engine::get_target_fps() const {
|
||||||
return Engine::get_singleton()->get_target_fps();
|
return Engine::get_singleton()->get_target_fps();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -656,7 +656,7 @@ public:
|
||||||
int get_iterations_per_second() const;
|
int get_iterations_per_second() const;
|
||||||
|
|
||||||
void set_target_fps(int p_fps);
|
void set_target_fps(int p_fps);
|
||||||
float get_target_fps() const;
|
int get_target_fps() const;
|
||||||
|
|
||||||
float get_frames_per_second() const;
|
float get_frames_per_second() const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue