diff options
author | Strangerke | 2016-05-25 07:55:35 +0200 |
---|---|---|
committer | Strangerke | 2016-05-25 07:55:35 +0200 |
commit | 8b685a2b1e3ff2132b3c29514d863084966a8cec (patch) | |
tree | baefd92be2d0a64fb26fc41e92e2a55f1436681c | |
parent | bffe2315c2eb36f69ae2bec1a66ab1d321502d91 (diff) | |
download | scummvm-rg350-8b685a2b1e3ff2132b3c29514d863084966a8cec.tar.gz scummvm-rg350-8b685a2b1e3ff2132b3c29514d863084966a8cec.tar.bz2 scummvm-rg350-8b685a2b1e3ff2132b3c29514d863084966a8cec.zip |
GNAP: Use an enum value in the declaration of setHotspot
-rw-r--r-- | engines/gnap/gnap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gnap/gnap.h b/engines/gnap/gnap.h index f5b7797914..84c40e2969 100644 --- a/engines/gnap/gnap.h +++ b/engines/gnap/gnap.h @@ -327,7 +327,7 @@ public: void delayTicksA(int val, int idx); void delayTicksCursor(int val); - void setHotspot(int index, int16 x1, int16 y1, int16 x2, int16 y2, uint16 flags = 0, + void setHotspot(int index, int16 x1, int16 y1, int16 x2, int16 y2, uint16 flags = SF_NONE, int16 walkX = -1, int16 walkY = -1); int getHotspotIndexAtPos(Common::Point pos); void updateCursorByHotspot(); |