mirror of https://github.com/AxioDL/metaforce.git
Merge pull request #181 from lioncash/ref
CInGameGuiManager: Take std::shared_ptr by const reference in DoStateTransition()
This commit is contained in:
commit
4b13f8768b
|
@ -103,8 +103,8 @@ void CInGameGuiManager::DoStateTransition(CStateManager& stateMgr) {
|
||||||
case EInGameGuiState::PauseGame:
|
case EInGameGuiState::PauseGame:
|
||||||
case EInGameGuiState::PauseLogBook:
|
case EInGameGuiState::PauseLogBook:
|
||||||
if (!x48_pauseScreen) {
|
if (!x48_pauseScreen) {
|
||||||
auto pState = stateMgr.GetPlayerState();
|
const auto& pState = stateMgr.GetPlayerState();
|
||||||
CPlayerState::EPlayerSuit suit = pState->GetCurrentSuitRaw();
|
const CPlayerState::EPlayerSuit suit = pState->GetCurrentSuitRaw();
|
||||||
int suitResIdx;
|
int suitResIdx;
|
||||||
if (pState->IsFusionEnabled()) {
|
if (pState->IsFusionEnabled()) {
|
||||||
switch (suit) {
|
switch (suit) {
|
||||||
|
|
Loading…
Reference in New Issue