Skip to content

Commit

Permalink
Merge pull request #166 from Kreeblah/descent3_macos_build_label
Browse files Browse the repository at this point in the history
Update build label for appropriate *NIX platform
  • Loading branch information
JeodC authored Apr 23, 2024
2 parents 959a453 + 0bcbf93 commit 9ff3bd2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Descent3/lnxmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,15 @@ int main(int argc, char *argv[]) {

snprintf(game_version_buffer, sizeof(game_version_buffer),
"\n\n"
"Descent 3 Linux %s v%d.%d.%d%s\n"
"Descent 3 %s %s v%d.%d.%d%s\n"
"Copyright (C) 1999 Outrage Entertainment, Inc.\n",

#if defined(__APPLE__) && defined(__MACH__)
"macOS",
#else
"Linux",
#endif

#ifdef DEDICATED
"Dedicated Server",
#elif DEMO
Expand Down

0 comments on commit 9ff3bd2

Please sign in to comment.