diff options
| author | Nipun Garg | 2019-06-28 01:57:28 +0530 |
|---|---|---|
| committer | Eugene Sandulenko | 2019-09-03 17:17:02 +0200 |
| commit | a3e12b07089f52d91b0a2c61c40440acb6bed9a2 (patch) | |
| tree | a76d32cf707b583695376452714428004200f65e /engines | |
| parent | f8b436cab79b7a365dff441d040ed6628ca4024a (diff) | |
| download | scummvm-rg350-a3e12b07089f52d91b0a2c61c40440acb6bed9a2.tar.gz scummvm-rg350-a3e12b07089f52d91b0a2c61c40440acb6bed9a2.tar.bz2 scummvm-rg350-a3e12b07089f52d91b0a2c61c40440acb6bed9a2.zip | |
HDB: Fix compiler-error thrown by constructor
Diffstat (limited to 'engines')
| -rw-r--r-- | engines/hdb/ai.h | 3 |
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 { |
