From 26d9fbaf527ce7c3c0f85c0699a015ffeeaac518 Mon Sep 17 00:00:00 2001 From: brennen Date: Wed, 14 Feb 2024 07:58:37 -0600 Subject: [PATCH] Fixed binary representation typo in comment --- modules/multiplayer/scene_multiplayer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/multiplayer/scene_multiplayer.h b/modules/multiplayer/scene_multiplayer.h index e799abeb48b..725cb9dbb6e 100644 --- a/modules/multiplayer/scene_multiplayer.h +++ b/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: