Browse Source

Fixed binary representation typo in comment

brennen 1 year ago
parent
commit
26d9fbaf52
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/multiplayer/scene_multiplayer.h

+ 1 - 1
modules/multiplayer/scene_multiplayer.h

@@ -98,7 +98,7 @@ public:
 
 
 	// This is the mask that will be used to extract the command.
 	// This is the mask that will be used to extract the command.
 	enum {
 	enum {
-		CMD_MASK = 7, // 0x7 -> 0b00001111
+		CMD_MASK = 7, // 0x7 -> 0b00000111
 	};
 	};
 
 
 private:
 private: