summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar archshift2014-09-06 20:05:22 -0700
committerGravatar archshift2014-09-07 12:09:02 -0700
commit1c02c03e3204c3f2ec4e7018ed199cc28e667d04 (patch)
tree0871a248e13b73fa0a6db3583da604fe3aa16801 /src/video_core
parentbootmanager::EmuThread: fixed initialization order (diff)
downloadyuzu-1c02c03e3204c3f2ec4e7018ed199cc28e667d04.tar.gz
yuzu-1c02c03e3204c3f2ec4e7018ed199cc28e667d04.tar.xz
yuzu-1c02c03e3204c3f2ec4e7018ed199cc28e667d04.zip
Dead code removal: video_core.cpp, load_symbol_map.cpp
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/video_core.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp
index 9aaff4917..c779771c5 100644
--- a/src/video_core/video_core.cpp
+++ b/src/video_core/video_core.cpp
@@ -21,13 +21,6 @@ EmuWindow* g_emu_window = NULL; ///< Frontend emulator window
21RendererBase* g_renderer = NULL; ///< Renderer plugin 21RendererBase* g_renderer = NULL; ///< Renderer plugin
22int g_current_frame = 0; 22int g_current_frame = 0;
23 23
24/// Start the video core
25void Start() {
26 if (g_emu_window == NULL) {
27 ERROR_LOG(VIDEO, "VideoCore::Start called without calling Init()!");
28 }
29}
30
31/// Initialize the video core 24/// Initialize the video core
32void Init(EmuWindow* emu_window) { 25void Init(EmuWindow* emu_window) {
33 g_emu_window = emu_window; 26 g_emu_window = emu_window;