Browse Source

render_base: Clarify/normalize getter functions

pull/15/merge
Lioncash 10 years ago
parent
commit
be913040a8
  1. 4
      src/video_core/renderer_base.h

4
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;
}

Loading…
Cancel
Save