aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb
diff options
context:
space:
mode:
authorNipun Garg2019-06-28 01:57:28 +0530
committerEugene Sandulenko2019-09-03 17:17:02 +0200
commita3e12b07089f52d91b0a2c61c40440acb6bed9a2 (patch)
treea76d32cf707b583695376452714428004200f65e /engines/hdb
parentf8b436cab79b7a365dff441d040ed6628ca4024a (diff)
downloadscummvm-rg350-a3e12b07089f52d91b0a2c61c40440acb6bed9a2.tar.gz
scummvm-rg350-a3e12b07089f52d91b0a2c61c40440acb6bed9a2.tar.bz2
scummvm-rg350-a3e12b07089f52d91b0a2c61c40440acb6bed9a2.zip
HDB: Fix compiler-error thrown by constructor
Diffstat (limited to 'engines/hdb')
-rw-r--r--engines/hdb/ai.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/hdb/ai.h b/engines/hdb/ai.h
index 8241d0d606..654eec95a4 100644
--- a/engines/hdb/ai.h
+++ b/engines/hdb/ai.h
@@ -654,9 +654,6 @@ struct Trigger {
struct CallbackDef {
CallbackType type;
void(*function)(int x, int y);
-
- CallbackDef() : type(NO_FUNCTION), function(NULL) {}
- CallbackDef(CallbackType type, void(*function)(int, int)) : type(type), function(function) {}
};
struct Callback {