2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

render_base: Clarify/normalize getter functions

This commit is contained in:
Lioncash 2016-03-08 21:39:44 -05:00
parent bf76afc68d
commit be913040a8

View file

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