瀏覽代碼

Merge pull request #88326 from brennennen/cmd_mask_comment_typo

Fixed binary representation typo in comment
Rémi Verschelde 1 年之前
父節點
當前提交
39fcef1b2f
共有 1 個文件被更改,包括 1 次插入1 次删除
  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.
 	enum {
-		CMD_MASK = 7, // 0x7 -> 0b00001111
+		CMD_MASK = 7, // 0x7 -> 0b00000111
 	};
 
 private: