GameServer - minor

This commit is contained in:
dean11 2014-02-26 16:10:04 +01:00 committed by Dander7BD
parent 9731cd9c5e
commit 4e502b298b
1 changed files with 3 additions and 3 deletions

View File

@ -80,8 +80,8 @@ namespace DanBias
//if(! data.window->CreateWin(WindowShell::WINDOW_INIT_DESC(L"Window", cPOINT(1600, 900), cPOINT()))) //if(! data.window->CreateWin(WindowShell::WINDOW_INIT_DESC(L"Window", cPOINT(1600, 900), cPOINT())))
WindowShell::WINDOW_INIT_DESC winDesc; WindowShell::WINDOW_INIT_DESC winDesc;
winDesc.windowSize.x = 1920; winDesc.windowSize.x = 1280;
winDesc.windowSize.y = 1080; winDesc.windowSize.y = 720;
winDesc.windowProcCallback = WindowCallBack; winDesc.windowProcCallback = WindowCallBack;
if(! data.window->CreateWin(winDesc) ) if(! data.window->CreateWin(winDesc) )
@ -155,7 +155,7 @@ namespace DanBias
Oyster::Graphics::API::Option p; Oyster::Graphics::API::Option p;
p.modelPath = L"..\\Content\\Models\\"; p.modelPath = L"..\\Content\\Models\\";
p.texturePath = L"..\\Content\\Textures\\"; 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 //! @todo fix proper amb value
p.AmbientValue = 1.3f; p.AmbientValue = 1.3f;