diff options
| author | 2020-03-24 22:57:36 -0600 | |
|---|---|---|
| committer | 2020-03-25 23:32:42 -0600 | |
| commit | cf9c94d4017120b618194a720942ef4e5c8289bd (patch) | |
| tree | 30cbea0216626e3a1db1a68120b54e6bd53804f5 /src/core/frontend/emu_window.h | |
| parent | Frontend/GPU: Refactor context management (diff) | |
| download | yuzu-cf9c94d4017120b618194a720942ef4e5c8289bd.tar.gz yuzu-cf9c94d4017120b618194a720942ef4e5c8289bd.tar.xz yuzu-cf9c94d4017120b618194a720942ef4e5c8289bd.zip | |
Address review and fix broken yuzu-tester build
Diffstat (limited to 'src/core/frontend/emu_window.h')
| -rw-r--r-- | src/core/frontend/emu_window.h | 2 |
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: | |||
| 30 | 30 | ||
| 31 | class Scoped { | 31 | class Scoped { |
| 32 | public: | 32 | public: |
| 33 | Scoped(GraphicsContext& context_) : context(context_) { | 33 | explicit Scoped(GraphicsContext& context_) : context(context_) { |
| 34 | context.MakeCurrent(); | 34 | context.MakeCurrent(); |
| 35 | } | 35 | } |
| 36 | ~Scoped() { | 36 | ~Scoped() { |