blob: 3b4d55b4eb26b28c5f77a18b0c94263efd3df34f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- Source/Engine/hud.h.orig 2012-10-27 08:18:51 UTC
+++ Source/Engine/hud.h
@@ -44,7 +44,7 @@ enum HudMap{
class AlertMessage {
public:
AlertMessage( string message, Uint32 start );
- bool operator ==(const AlertMessage& other) {return (start == other.start) && (message == other.message);}
+ bool operator ==(const AlertMessage& other) const {return (start == other.start) && (message == other.message);}
string message;
Uint32 start;
};
|