mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Expose Renderer's Framecount
We don't want to move it, because we want to complete this refactor without changing savestate version
This commit is contained in:
@ -104,7 +104,8 @@ public:
|
||||
|
||||
bool CalculateTargetSize();
|
||||
|
||||
int m_frame_count = 0;
|
||||
int FrameCount() const { return m_frame_count; }
|
||||
int FrameCountIncrement() { return m_frame_count++; }
|
||||
|
||||
void OnConfigChanged(u32 bits);
|
||||
|
||||
@ -131,6 +132,8 @@ private:
|
||||
u32 m_last_xfb_stride = 0;
|
||||
u32 m_last_xfb_height = 0;
|
||||
|
||||
int m_frame_count = 0;
|
||||
|
||||
EventHook m_update_widescreen_handle;
|
||||
EventHook m_config_changed_handle;
|
||||
};
|
||||
|
Reference in New Issue
Block a user