summaryrefslogtreecommitdiffstats
path: root/src/core/frontend
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-05-29 17:01:12 +0200
committerGitHub <noreply@github.com>2019-05-29 17:01:12 +0200
commit665b7e8e188f40208337d819e031b369f022836d (patch)
treecfd50bcbde06fdeedf511eca4b0e9f340b9d0f89 /src/core/frontend
parentMerge pull request #2519 from lioncash/sign (diff)
parentemu_window: Pass OnMinimalClientAreaChangeRequest argument by copy (diff)
downloadyuzu-665b7e8e188f40208337d819e031b369f022836d.tar
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.gz
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.bz2
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.lz
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.xz
yuzu-665b7e8e188f40208337d819e031b369f022836d.tar.zst
yuzu-665b7e8e188f40208337d819e031b369f022836d.zip
Diffstat (limited to 'src/core/frontend')
-rw-r--r--src/core/frontend/emu_window.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/frontend/emu_window.h b/src/core/frontend/emu_window.h
index e2c290dc1..4a9912641 100644
--- a/src/core/frontend/emu_window.h
+++ b/src/core/frontend/emu_window.h
@@ -169,8 +169,7 @@ private:
* For the request to be honored, EmuWindow implementations will usually reimplement this
* function.
*/
- virtual void OnMinimalClientAreaChangeRequest(
- const std::pair<unsigned, unsigned>& minimal_size) {
+ virtual void OnMinimalClientAreaChangeRequest(std::pair<unsigned, unsigned>) {
// By default, ignore this request and do nothing.
}