From b5565a43378014a037798f43bc382b2c30cdf8d9 Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 15 Dec 2011 19:21:49 -0500 Subject: [PATCH] PEGASUS: Fix compilation on Windows --- engines/pegasus/notification.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/pegasus/notification.h b/engines/pegasus/notification.h index ded66478fc3d..70fcd822a9f0 100755 --- a/engines/pegasus/notification.h +++ b/engines/pegasus/notification.h @@ -41,8 +41,8 @@ struct tReceiverEntry { tNotificationFlags mask; }; -int operator==(const tReceiverEntry &entry1, const tReceiverEntry &entry1); -int operator!=(const tReceiverEntry &entry1, const tReceiverEntry &entry1); +int operator==(const tReceiverEntry &entry1, const tReceiverEntry &entry2); +int operator!=(const tReceiverEntry &entry1, const tReceiverEntry &entry2); typedef Common::List tReceiverList;