From 098cb8cd935f3cdfd45fddfd0831a447df128ddf Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Tue, 28 Jun 2022 22:08:12 -0400 Subject: [PATCH] add CLANG SHIP overlay on clang built versions --- soh/src/overlays/gamestates/ovl_title/z_title.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/soh/src/overlays/gamestates/ovl_title/z_title.c b/soh/src/overlays/gamestates/ovl_title/z_title.c index 117da9c37..48901563f 100644 --- a/soh/src/overlays/gamestates/ovl_title/z_title.c +++ b/soh/src/overlays/gamestates/ovl_title/z_title.c @@ -33,6 +33,8 @@ void Title_PrintBuildInfo(Gfx** gfxp) { #ifdef _MSC_VER GfxPrint_Printf(&printer, "MSVC SHIP"); +#elif __clang__ + GfxPrint_Printf(&printer, "CLANG SHIP"); #else GfxPrint_Printf(&printer, "GCC SHIP"); #endif