Skip to content

Commit

Permalink
fix: compilation issue on standalone build
Browse files Browse the repository at this point in the history
  • Loading branch information
paulpach committed Mar 17, 2021
1 parent 666cdb0 commit d6bea93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private IEnumerator DisplayFramesPerSecons()
#if UNITY_EDITOR
Debug.LogFormat("{0} FPS {1} messages {2} clients", frames, messages, server.NumberOfPlayers);
#else
Console.WriteLine("{0} FPS {1} messages {2} clients", frames, messages, server.NumPlayers);
Console.WriteLine("{0} FPS {1} messages {2} clients", frames, messages, server.NumberOfPlayers);
#endif
previousFrameCount = frameCount;
previousMessageCount = messageCount;
Expand Down

0 comments on commit d6bea93

Please sign in to comment.