Skip to content

Commit

Permalink
replacing spaces with tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
aleck099 committed Nov 26, 2023
1 parent c7ff1b9 commit f4d4358
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/multiplayer/game_multiplayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -439,11 +439,11 @@ using namespace Messages::C2S;
int* GetPlayerCoords() {
auto& player = *Main_Data::game_player;

int* coords = new int[2];
coords[0] = player.GetX();
coords[1] = player.GetY();
int* coords = new int[2];
coords[0] = player.GetX();
coords[1] = player.GetY();

return coords;
return coords;
}

void SetGameLanguage(const char* lang) {
Expand Down

0 comments on commit f4d4358

Please sign in to comment.