From 69cc191900345711975649d5f481e65d59798f41 Mon Sep 17 00:00:00 2001 From: NepDisk Date: Tue, 4 Feb 2025 09:29:19 -0500 Subject: [PATCH] acutally use hex for NO* flags --- src/doomdata.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/doomdata.h b/src/doomdata.h index a54c2af84..a8a0e387e 100644 --- a/src/doomdata.h +++ b/src/doomdata.h @@ -145,13 +145,13 @@ enum ML_WRAPMIDTEX = 0x00000400, // Compat for old lua scripts. - ML_NOSONIC = 2048, - ML_NOTAILS = 4096, - ML_NOKNUX = 8192, + ML_NOSONIC = 0x00000800, + ML_NOTAILS = 0x00001000, + ML_NOKNUX = 0x00002000, // Apply effect only in netgames ML_NETONLY = 0x00000800, - ML_NETONLY_OLD = 0x3800, // Combination of old ML_NOSONIC, ML_NOTAILS and ML_NOKNUX + ML_NETONLY_OLD = 0x00003800, // Combination of old ML_NOSONIC, ML_NOTAILS and ML_NOKNUX // Apply effect only in single player games ML_NONET = 0x00001000,