Removing 64bit return type and cleaning up some SHIM* stuff pre-refactor.

This commit is contained in:
Ben Vanik
2015-05-29 17:12:30 -07:00
parent 0a83b49744
commit a4edb7f9e1
11 changed files with 71 additions and 79 deletions

View File

@@ -48,9 +48,9 @@ SHIM_CALL XamUserGetSigninState_shim(PPCContext* ppc_state,
if (user_index == 0 || (user_index & 0xFF) == 0xFF) {
const auto& user_profile = state->user_profile();
auto signin_state = user_profile->signin_state();
SHIM_SET_RETURN_64(signin_state);
SHIM_SET_RETURN_32(signin_state);
} else {
SHIM_SET_RETURN_64(0);
SHIM_SET_RETURN_32(0);
}
}