add CLANG SHIP overlay on clang built versions

This commit is contained in:
Jeffrey Crowell 2022-06-28 22:08:12 -04:00
commit 098cb8cd93

View file

@ -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