diff options
Diffstat (limited to 'engines/pegasus/notification.h')
-rw-r--r-- | engines/pegasus/notification.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/pegasus/notification.h b/engines/pegasus/notification.h index 142bf8c06d..e795a4b375 100644 --- a/engines/pegasus/notification.h +++ b/engines/pegasus/notification.h @@ -26,6 +26,7 @@ #ifndef PEGASUS_NOTIFICATION_H #define PEGASUS_NOTIFICATION_H +#include "common/array.h" #include "common/list.h" #include "pegasus/types.h" @@ -44,7 +45,7 @@ struct ReceiverEntry { int operator==(const ReceiverEntry &entry1, const ReceiverEntry &entry2); int operator!=(const ReceiverEntry &entry1, const ReceiverEntry &entry2); -typedef Common::List<ReceiverEntry> ReceiverList; +typedef Common::Array<ReceiverEntry> ReceiverList; /* A notification can have 32 flags associated with it, which can be user-defined. |