Skip to content

Commit

Permalink
Merge pull request #12 from HeatXD/development
Browse files Browse the repository at this point in the history
fix for mac build
  • Loading branch information
HeatXD authored Oct 22, 2024
2 parents 52eadba + 040c196 commit 84c8a26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GekkoLib/include/backend.h
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ namespace Gekko {
void OnHealthCheck(NetAddress& addr, NetPacket& pkt);

private:
static const u32 MAX_PLAYER_SEND_SIZE = 32;
static const u32 MAX_SPECTATOR_SEND_SIZE = 48;
static const u32 NUM_TO_SYNC = 4;
const u32 MAX_PLAYER_SEND_SIZE = 32;
const u32 MAX_SPECTATOR_SEND_SIZE = 48;
const u32 NUM_TO_SYNC = 4;

u32 _input_size;

Expand Down

0 comments on commit 84c8a26

Please sign in to comment.