diff options
author | Matthew Hoops | 2011-12-15 19:21:49 -0500 |
---|---|---|
committer | Matthew Hoops | 2011-12-15 19:21:49 -0500 |
commit | b5565a43378014a037798f43bc382b2c30cdf8d9 (patch) | |
tree | 5d8a3b5ae28a1f75135385411891a3d22fa4378e /engines | |
parent | 693fcec6f5a43a3035c00ec8802795a00c3045ee (diff) | |
download | scummvm-rg350-b5565a43378014a037798f43bc382b2c30cdf8d9.tar.gz scummvm-rg350-b5565a43378014a037798f43bc382b2c30cdf8d9.tar.bz2 scummvm-rg350-b5565a43378014a037798f43bc382b2c30cdf8d9.zip |
PEGASUS: Fix compilation on Windows
Diffstat (limited to 'engines')
-rwxr-xr-x | engines/pegasus/notification.h | 4 |
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; |