add CLANG SHIP overlay on clang built versions

This commit is contained in:
Jeffrey Crowell 2022-06-28 22:08:12 -04:00
parent 54d3c3b025
commit 098cb8cd93
1 changed files with 2 additions and 0 deletions

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