GameServer - minor

This commit is contained in:
dean11 2014-02-26 16:10:04 +01:00
parent 504f11ef4c
commit 3bfedf920a
1 changed files with 3 additions and 3 deletions

View File

@ -78,8 +78,8 @@ namespace DanBias
//if(! data.window->CreateWin(WindowShell::WINDOW_INIT_DESC(L"Window", cPOINT(1600, 900), cPOINT())))
WindowShell::WINDOW_INIT_DESC winDesc;
winDesc.windowSize.x = 1920;
winDesc.windowSize.y = 1080;
winDesc.windowSize.x = 1280;
winDesc.windowSize.y = 720;
winDesc.windowProcCallback = WindowCallBack;
if(! data.window->CreateWin(winDesc) )
@ -153,7 +153,7 @@ namespace DanBias
Oyster::Graphics::API::Option p;
p.modelPath = L"..\\Content\\Models\\";
p.texturePath = L"..\\Content\\Textures\\";
p.Resolution = Oyster::Math::Float2( 1920.0f, 1080.0f );
p.Resolution = Oyster::Math::Float2( 1280.0f, 720.0f );
//! @todo fix proper amb value
p.AmbientValue = 1.3f;