summaryrefslogtreecommitdiff
path: root/src/core/frontend
diff options
context:
space:
mode:
authorJames Rowe <jroweboy@gmail.com>2020-03-24 22:57:36 -0600
committerJames Rowe <jroweboy@gmail.com>2020-03-25 23:32:42 -0600
commitcf9c94d4017120b618194a720942ef4e5c8289bd (patch)
tree30cbea0216626e3a1db1a68120b54e6bd53804f5 /src/core/frontend
parent282adfc70b5d7d958d564bfda0227bb3fbd8d110 (diff)
Address review and fix broken yuzu-tester build
Diffstat (limited to 'src/core/frontend')
-rw-r--r--src/core/frontend/emu_window.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/frontend/emu_window.h b/src/core/frontend/emu_window.h
index bb283d844..72294d4d8 100644
--- a/src/core/frontend/emu_window.h
+++ b/src/core/frontend/emu_window.h
@@ -30,7 +30,7 @@ public:
class Scoped {
public:
- Scoped(GraphicsContext& context_) : context(context_) {
+ explicit Scoped(GraphicsContext& context_) : context(context_) {
context.MakeCurrent();
}
~Scoped() {