2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Fix all the packed structures.

Now we actually build a significant amount of stuff on Linux.
This commit is contained in:
Darryl Pogue
2012-01-29 00:19:37 -08:00
parent 945e1ac37b
commit 85b5842ece
28 changed files with 57 additions and 55 deletions

View File

@ -1214,7 +1214,7 @@ void pfConsole::AddLineF(const char * fmt, ...) {
char str[1024];
va_list args;
va_start(args, fmt);
_vsnprintf(str, arrsize(str), fmt, args);
hsVsnprintf(str, arrsize(str), fmt, args);
va_end(args);
AddLine(str);
}

View File

@ -114,7 +114,7 @@ class pfConsole : public hsKeyedObject
static uint32_t fConsoleTextColor;
static pfConsole *fTheConsole;
static void _cdecl IAddLineCallback( const char *string );
static void CDECL IAddLineCallback( const char *string );
static plPipeline *fPipeline;