From d17551ad8c7bfef705f33fce030aa56430b97d63 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Tue, 28 Dec 2004 15:58:49 +0000 Subject: [PATCH] added 4 and 5 parameters Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@2091 --- include/logging.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/logging.h b/include/logging.h index 570bc7f2..ecac37d9 100644 --- a/include/logging.h +++ b/include/logging.h @@ -45,6 +45,8 @@ struct LOG void operator()(char const* buf, double f1) { return;} void operator()(char const* buf, double f1, double f2) { return;} void operator()(char const* buf, double f1, double f2, double f3) { return;} + void operator()(char const* buf, double f1, double f2, double f3, double f4) { return;} + void operator()(char const* buf, double f1, double f2, double f3, double f4, double f5) { return;} void operator()(char const* buf, char const* s1) { return;} void operator()(char const* buf, char const* s1, double f1) { return;}