1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-22 10:22:52 +01:00

Don't grab mouse cursor before going ingame

This commit is contained in:
Jannik Vogel 2016-08-09 18:15:12 +02:00
parent f82beeefac
commit cda72bb87f
2 changed files with 0 additions and 2 deletions

View File

@ -90,7 +90,6 @@ RWGame::RWGame(int argc, char* argv[])
window = new GameWindow();
window->create(kWindowTitle + " [" + kBuildStr + "]", w, h, fullscreen);
window->hideCursor();
work = new WorkContext();

View File

@ -16,7 +16,6 @@ void LoadingState::enter()
}
game->newGame();
getWindow().hideCursor();
}
void LoadingState::exit()