Add Core::State::Starting

This commit is contained in:
Michael M
2017-07-01 14:08:58 -07:00
parent d217e797f2
commit 22a9a08b24
4 changed files with 7 additions and 3 deletions

View File

@ -700,6 +700,9 @@ State GetState()
return State::Running;
}
if (s_is_booting.IsSet())
return State::Starting;
return State::Uninitialized;
}