From d944d1120faaa29a576debffd05b27a810eac6d3 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Fri, 3 Aug 2018 12:47:40 -0400
Subject: [PATCH] video_core: Remove unimplemented Start() function prototype

Given this has no definition, we can just remove it entirely.
---
 src/video_core/video_core.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/video_core/video_core.h b/src/video_core/video_core.h
index d7a2b26b3..ef1279cbb 100644
--- a/src/video_core/video_core.h
+++ b/src/video_core/video_core.h
@@ -27,9 +27,6 @@ extern std::atomic<bool> g_hw_shader_accurate_gs;
 extern std::atomic<bool> g_hw_shader_accurate_mul;
 extern std::atomic<bool> g_renderer_bg_color_update_requested;
 
-/// Start the video core
-void Start();
-
 /// Initialize the video core
 bool Init(EmuWindow* emu_window);