From a959d92b44f22f0c02068c30a94e096fcaecb878 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?liy=20=E2=9B=A4?= Date: Tue, 9 Sep 2025 08:47:00 -0700 Subject: [PATCH] define GX_TEXMAPNULL as GX_TEXMAP_NULL all the other NULL values that are used in GX_SetTevOrder dont have underscores except for GX_TEXMAP_NULL and not only is that out of place its also annoying cos i can never remember whether GX_TEXCOORDNULL is the one with the underscore or GX_TEXMAP_NULL --- gc/ogc/gx.h | 1 + 1 file changed, 1 insertion(+) diff --git a/gc/ogc/gx.h b/gc/ogc/gx.h index 8202de2fa..27520a30f 100644 --- a/gc/ogc/gx.h +++ b/gc/ogc/gx.h @@ -672,6 +672,7 @@ #define GX_TEXMAP7 7 /*!< Texture map slot 7 */ #define GX_MAX_TEXMAP 8 #define GX_TEXMAP_NULL 0xff /*!< No texmap */ +#define GX_TEXMAPNULL GX_TEXMAP_NULL #define GX_TEXMAP_DISABLE 0x100 /*!< Disable texmap lookup for this texmap slot (use bitwise OR with a texture map slot). */ /*! @} */