diff options
author | comex <comexk@gmail.com> | 2020-11-22 22:05:18 +0100 |
---|---|---|
committer | comex <comexk@gmail.com> | 2020-11-23 23:58:49 +0100 |
commit | 994f4977810749c0b597e7a7531a02d907967a68 (patch) | |
tree | 82eaf8b6dea5baf60e17601771dc8191b8e69a8f /src/yuzu_tester | |
parent | Merge pull request #4451 from slashiee/extended-logging (diff) | |
download | yuzu-994f4977810749c0b597e7a7531a02d907967a68.tar yuzu-994f4977810749c0b597e7a7531a02d907967a68.tar.gz yuzu-994f4977810749c0b597e7a7531a02d907967a68.tar.bz2 yuzu-994f4977810749c0b597e7a7531a02d907967a68.tar.lz yuzu-994f4977810749c0b597e7a7531a02d907967a68.tar.xz yuzu-994f4977810749c0b597e7a7531a02d907967a68.tar.zst yuzu-994f4977810749c0b597e7a7531a02d907967a68.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp | 2 | ||||
-rw-r--r-- | src/yuzu_tester/emu_window/emu_window_sdl2_hide.h | 3 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp index 78f75fb38..358e03870 100644 --- a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp +++ b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.cpp @@ -109,8 +109,6 @@ EmuWindow_SDL2_Hide::~EmuWindow_SDL2_Hide() { SDL_Quit(); } -void EmuWindow_SDL2_Hide::PollEvents() {} - bool EmuWindow_SDL2_Hide::IsShown() const { return false; } diff --git a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h index a553b4b95..adccdf35e 100644 --- a/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h +++ b/src/yuzu_tester/emu_window/emu_window_sdl2_hide.h @@ -17,9 +17,6 @@ public: explicit EmuWindow_SDL2_Hide(); ~EmuWindow_SDL2_Hide(); - /// Polls window events - void PollEvents() override; - /// Whether the screen is being shown or not. bool IsShown() const override; |