diff options
| -rw-r--r-- | src/video_core/renderer_base.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_base.h b/src/video_core/renderer_base.h index bdfce1b60..68a8fbde5 100644 --- a/src/video_core/renderer_base.h +++ b/src/video_core/renderer_base.h | |||
| @@ -46,11 +46,11 @@ public: | |||
| 46 | // Getter/setter functions: | 46 | // Getter/setter functions: |
| 47 | // ------------------------ | 47 | // ------------------------ |
| 48 | 48 | ||
| 49 | f32 GetCurrentframe() const { | 49 | f32 GetCurrentFPS() const { |
| 50 | return m_current_fps; | 50 | return m_current_fps; |
| 51 | } | 51 | } |
| 52 | 52 | ||
| 53 | int current_frame() const { | 53 | int GetCurrentFrame() const { |
| 54 | return m_current_frame; | 54 | return m_current_frame; |
| 55 | } | 55 | } |
| 56 | 56 | ||