# HG changeset patch # User Joshua Surace # Date 1636156591 -39600 # Sat Nov 06 10:56:31 2021 +1100 # Node ID ff0214544d10b3f86207bd182547390bc2cc9ce1 # Parent 366f5d10bc73521ba6d04d70cc411d898605d85b Fixed a Mac OS compile error. diff -r 366f5d10bc73 -r ff0214544d10 src/c_console.cpp --- a/src/c_console.cpp Sat Oct 30 13:16:29 2021 -0400 +++ b/src/c_console.cpp Sat Nov 06 10:56:31 2021 +1100 @@ -2278,7 +2278,7 @@ return; FString ConsoleString; - ConsoleString.Format ("%s\n%s\n%s\n", bar1, msg, bar3); + ConsoleString.Format ("%s\n%s\n%s\n", bar1, msg.GetChars(), bar3); // Add this message to the console window. AddToConsole (-1, ConsoleString); diff -r 366f5d10bc73 -r ff0214544d10 src/network.cpp --- a/src/network.cpp Sat Oct 30 13:16:29 2021 -0400 +++ b/src/network.cpp Sat Nov 06 10:56:31 2021 +1100 @@ -1073,7 +1073,7 @@ // remove it from the list. if ( DuplicateLumpFilenames[i].CompareNoCase( fileName ) == 0 ) { - Printf( TEXTCOLOR_YELLOW "%s contains duplicate protected lump %s\n", fileName, lumpName ); + Printf( TEXTCOLOR_YELLOW "%s contains duplicate protected lump %s\n", fileName.GetChars(), lumpName ); g_bDuplicateLumpAuthenticated = true; DuplicateLumps.Delete( i );