Prep for split libraries.

This commit is contained in:
Ben Vanik
2015-07-16 22:26:34 -07:00
parent 2462c2249d
commit 756d414386
9 changed files with 16 additions and 13 deletions

View File

@@ -43,7 +43,7 @@ void InitializeIfNeeded() {
void CleanupOnShutdown() {}
std::unique_ptr<GraphicsSystem> GL4GraphicsSystem::Create(Emulator* emulator) {
std::unique_ptr<GraphicsSystem> Create(Emulator* emulator) {
InitializeIfNeeded();
return std::make_unique<GL4GraphicsSystem>(emulator);
}