diff options
author | bunnei <bunneidev@gmail.com> | 2015-03-07 23:21:19 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-03-07 23:21:19 +0100 |
commit | 9960c49c217d2c1ae202bdacd475c9a47cda39b9 (patch) | |
tree | a80e07b2ee63c3a081f3b3aec4eb45279b6f9b85 /src/video_core/video_core.cpp | |
parent | Merge pull request #615 from Subv/services (diff) | |
download | yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.tar yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.tar.gz yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.tar.bz2 yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.tar.lz yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.tar.xz yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.tar.zst yuzu-9960c49c217d2c1ae202bdacd475c9a47cda39b9.zip |
Diffstat (limited to 'src/video_core/video_core.cpp')
-rw-r--r-- | src/video_core/video_core.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp index 0a236595c..b9d4ede3a 100644 --- a/src/video_core/video_core.cpp +++ b/src/video_core/video_core.cpp @@ -18,7 +18,6 @@ namespace VideoCore { EmuWindow* g_emu_window = nullptr; ///< Frontend emulator window RendererBase* g_renderer = nullptr; ///< Renderer plugin -int g_current_frame = 0; /// Initialize the video core void Init(EmuWindow* emu_window) { @@ -27,8 +26,6 @@ void Init(EmuWindow* emu_window) { g_renderer->SetWindow(g_emu_window); g_renderer->Init(); - g_current_frame = 0; - LOG_DEBUG(Render, "initialized OK"); } |