GameServer - minor
This commit is contained in:
parent
504f11ef4c
commit
3bfedf920a
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue