aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/video_core.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-09-13 22:58:58 -0400
committerbunnei <bunneidev@gmail.com>2014-09-13 22:58:58 -0400
commit5481115e71b1e8a35bce002926be3db6b91955a5 (patch)
tree99e1b34c33840c1316850eae1d44a6fdec9a7fd5 /src/video_core/video_core.cpp
parentcbdf4d4c8e11f8d1503b440eee1ed2d5f144a73f (diff)
parent81baa477b503796f3dbf9308a7fdf51a871f5c37 (diff)
Merge pull request #97 from archshift/cleanup
Small, general code cleanup
Diffstat (limited to 'src/video_core/video_core.cpp')
-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
RendererBase* g_renderer = NULL; ///< Renderer plugin
int g_current_frame = 0;
-/// Start the video core
-void Start() {
- if (g_emu_window == NULL) {
- ERROR_LOG(VIDEO, "VideoCore::Start called without calling Init()!");
- }
-}
-
/// Initialize the video core
void Init(EmuWindow* emu_window) {
g_emu_window = emu_window;