mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
- initial support for configure based on scummvm tree (tested mac os x leopard, linux(ubuntu), cygwin with mingwin gcc)
- adopted more common dir code from scummvm for easier multi platform support - synced some changes from scummvm code
This commit is contained in:
+2
-2
@@ -87,7 +87,7 @@ void hexdump(const byte * data, int len, int bytesPerLine) {
|
||||
printf("|\n");
|
||||
}
|
||||
|
||||
void warning(const char *fmt, ...) {
|
||||
void CDECL warning(const char *fmt, ...) {
|
||||
std::fprintf(stderr, "WARNING: ");
|
||||
|
||||
std::va_list va;
|
||||
@@ -98,7 +98,7 @@ void warning(const char *fmt, ...) {
|
||||
std::fprintf(stderr, "\n");
|
||||
}
|
||||
|
||||
void error(const char *fmt, ...) {
|
||||
void CDECL error(const char *fmt, ...) {
|
||||
std::fprintf(stderr, "ERROR: ");
|
||||
|
||||
std::va_list va;
|
||||
|
||||
Reference in New Issue
Block a user