Просмотр исходного кода

render_base: Clarify/normalize getter functions

Lioncash 10 лет назад
Родитель
Сommit
be913040a8
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/video_core/renderer_base.h

+ 2 - 2
src/video_core/renderer_base.h

@@ -46,11 +46,11 @@ public:
     // Getter/setter functions:
     // ------------------------
 
-    f32 GetCurrentframe() const {
+    f32 GetCurrentFPS() const {
         return m_current_fps;
     }
 
-    int current_frame() const {
+    int GetCurrentFrame() const {
         return m_current_frame;
     }