mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 15:21:56 -05:00
get_target_fps and set_target_fps now both use an int
This commit is contained in:
@@ -2585,7 +2585,7 @@ void _Engine::set_target_fps(int 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();
|
||||
}
|
||||
|
||||
|
||||
@@ -656,7 +656,7 @@ public:
|
||||
int get_iterations_per_second() const;
|
||||
|
||||
void set_target_fps(int p_fps);
|
||||
float get_target_fps() const;
|
||||
int get_target_fps() const;
|
||||
|
||||
float get_frames_per_second() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user