fix rebase error

Former-commit-id: 9d3866f860c80468c5087d8f8dbffd7c8a8441f9
This commit is contained in:
Imbris 2019-03-15 23:51:09 -04:00
parent e54a1ba369
commit 9aece17286

View File

@ -61,7 +61,7 @@ impl PlayState for MainMenuState {
if let Some((username, address)) = self.main_menu_ui.login_attempt() {
// For now just start a new session
return PlayStateResult::Push(
Box::new(SessionState::new(&mut global_state.window.unwrap()), // TODO: Handle this error
Box::new(SessionState::new(&mut global_state.window).unwrap()) // TODO: Handle this error
);
}