2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix mouse recentering.

Existing fix didn't apply until after SecurePreloader completed.
This disables the mouse recentering earlier.
This commit is contained in:
2012-01-20 05:18:04 -08:00
parent 73ec6b4601
commit 02e38f981e

View File

@ -1309,8 +1309,6 @@ void plClient::IIncProgress (hsScalar byHowMuch, const char * text)
//============================================================================
void plClient::IStartProgress( const char *title, hsScalar len )
{
plInputManager::SetRecenterMouse(false);
if (fProgressBar)
{
fProgressBar->SetLength(fProgressBar->GetMax()+len);
@ -1555,6 +1553,7 @@ hsBool plClient::StartInit()
pfGameGUIMgr::GetInstance()->SetAspectRatio( aspectratio );
plMouseDevice::Instance()->SetDisplayResolution((float)fPipeline->Width(), (float)fPipeline->Height());
plInputManager::SetRecenterMouse(false);
// create the listener for the audio system:
plListener* pLMod = TRACKED_NEW plListener;