Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
WinterSquire committed May 24, 2024
1 parent 7f82b32 commit aa6857d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hook/mcc/mcc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ char __fastcall get_xbox_user_id(
if (player_index >= p_setting->player_count) return false;

if (p_userId)
*p_userId = player_index + 5;
*p_userId = p_setting->profiles[player_index].id;

if (p_gameTag)
String::wstrcpy(p_gameTag, p_setting->profiles[player_index].name, size >> 1);
Expand Down
2 changes: 1 addition & 1 deletion src/imgui/home_page.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Press "F4" or "Start + Back" to toggle the menu.
To navigate using Controller use the "Right Stick" to move the mouse and "RB" to click.
Having this menu open will pause whichever Halo game you are playing.
Having this menu open will disable inputs or pause the game.
)";
char buffer[1024];
std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
Expand Down

0 comments on commit aa6857d

Please sign in to comment.