Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions src/Engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
#include <string.h> // strcmp, strcasecmp
#include <stdlib.h> // strtod, strtol

#include "gamelib_render.h"
#include "log_manager.h"


namespace M4 {

// Engine/String.cpp
Expand Down Expand Up @@ -86,7 +82,7 @@ void Log_Error(const char * format, ...) {
}

void Log_ErrorArgList(const char * format, va_list args) {
Log::print_valist(format, args);
vprintf(format, args);
}


Expand Down
2 changes: 1 addition & 1 deletion src/Engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#define ENGINE_H

#include <stdarg.h> // va_list, vsnprintf
#include <malloc.h> // malloc
#include <stdlib.h> // malloc
#include <new> // for placement new

#ifndef NULL
Expand Down