aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Hoops2011-12-15 19:21:49 -0500
committerMatthew Hoops2011-12-15 19:21:49 -0500
commitb5565a43378014a037798f43bc382b2c30cdf8d9 (patch)
tree5d8a3b5ae28a1f75135385411891a3d22fa4378e
parent693fcec6f5a43a3035c00ec8802795a00c3045ee (diff)
downloadscummvm-rg350-b5565a43378014a037798f43bc382b2c30cdf8d9.tar.gz
scummvm-rg350-b5565a43378014a037798f43bc382b2c30cdf8d9.tar.bz2
scummvm-rg350-b5565a43378014a037798f43bc382b2c30cdf8d9.zip
PEGASUS: Fix compilation on Windows
-rwxr-xr-xengines/pegasus/notification.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/pegasus/notification.h b/engines/pegasus/notification.h
index ded66478fc..70fcd822a9 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<tReceiverEntry> tReceiverList;