SdkServer: Fix compilation

Former-commit-id: ec1f6310e42086c20589190f5bce7760a3df38ce [formerly 72c0b397681e524e782cf3ab177a16b93d34dba3] [formerly 91f72f2b87fa8b03d9a86b0dcaef1705402b0004 [formerly cdc0851e924c2246c4ed62240b105571c8d9630a]]
Former-commit-id: a31774c45bfad37c84bb9a15a974930d9687f310 [formerly dfcf84977f23cad5687abd42a6ca120353b0961f]
Former-commit-id: 578ec85861ca025f70efa04187a24b6fb27cdfd4
This commit is contained in:
Lynix
2016-08-28 18:16:35 +02:00
parent 6872616ca4
commit 22914f38e8
2 changed files with 16 additions and 1 deletions

View File

@@ -87,6 +87,7 @@ namespace Ndk
return true;
}
#ifndef NDK_SERVER
void Application::SetupConsole(WindowInfo& info)
{
std::unique_ptr<ConsoleOverlay> overlay = std::make_unique<ConsoleOverlay>();
@@ -184,6 +185,7 @@ namespace Ndk
camComponent.SetProjectionType(Nz::ProjectionType_Orthogonal);
camComponent.SetTarget(info.renderTarget);
}
#endif
Application* Application::s_application = nullptr;
}