2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Merge pull request #911 from lioncash/prototype

video_core: Remove unimplemented Start() function prototype
This commit is contained in:
bunnei 2018-08-04 02:18:38 -04:00 committed by GitHub
commit 762fcaf5de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,9 +23,6 @@ extern std::unique_ptr<RendererBase> g_renderer; ///< Renderer plugin
// qt ui) // qt ui)
extern std::atomic<bool> g_toggle_framelimit_enabled; extern std::atomic<bool> g_toggle_framelimit_enabled;
/// Start the video core
void Start();
/// Initialize the video core /// Initialize the video core
bool Init(EmuWindow& emu_window); bool Init(EmuWindow& emu_window);