mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-27 12:45:50 +00:00
Hook up Presenter's ConfigChanged function
Fixes issue with post-processing not working
This commit is contained in:
parent
9c1fe59cc9
commit
5c1b3ac61d
2 changed files with 6 additions and 2 deletions
|
@ -44,7 +44,7 @@ public:
|
|||
|
||||
bool Initialize();
|
||||
|
||||
void CheckForConfigChanges(u32 changed_bits);
|
||||
void ConfigChanged(u32 changed_bits);
|
||||
|
||||
// Display resolution
|
||||
int GetBackbufferWidth() const { return m_backbuffer_width; }
|
||||
|
@ -147,6 +147,8 @@ private:
|
|||
u32 m_last_xfb_width = MAX_XFB_WIDTH;
|
||||
u32 m_last_xfb_stride = 0;
|
||||
u32 m_last_xfb_height = MAX_XFB_HEIGHT;
|
||||
|
||||
Common::EventHook m_config_changed;
|
||||
};
|
||||
|
||||
} // namespace VideoCommon
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue