From a066f896d861a9b01e6aa55f51fc9d42e407b077 Mon Sep 17 00:00:00 2001 From: Paul Joannon Date: Fri, 12 Jan 2018 14:26:21 +0100 Subject: [PATCH] get_target_fps and set_target_fps now both use an int --- core/bind/core_bind.cpp | 2 +- core/bind/core_bind.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/bind/core_bind.cpp b/core/bind/core_bind.cpp index c7039353aeb..32b94b9b021 100644 --- a/core/bind/core_bind.cpp +++ b/core/bind/core_bind.cpp @@ -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(); } diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h index bc5b8ea04cc..2353b6d09f9 100644 --- a/core/bind/core_bind.h +++ b/core/bind/core_bind.h @@ -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;