summaryrefslogtreecommitdiff
path: root/src/net/eathena/npcrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-05 22:44:08 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-05 22:44:08 +0300
commit087010af8bef9769725517b7768d1f77ced247a0 (patch)
treec4699580e313b670604e7db3a7005d26babe9cee /src/net/eathena/npcrecv.cpp
parent468dfddf32ce2b3e3e305f232d74c4fb3a46222e (diff)
downloadManaVerse-087010af8bef9769725517b7768d1f77ced247a0.tar.gz
ManaVerse-087010af8bef9769725517b7768d1f77ced247a0.tar.bz2
ManaVerse-087010af8bef9769725517b7768d1f77ced247a0.tar.xz
ManaVerse-087010af8bef9769725517b7768d1f77ced247a0.zip
Fix old compilers again.
Diffstat (limited to 'src/net/eathena/npcrecv.cpp')
-rw-r--r--src/net/eathena/npcrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/npcrecv.cpp b/src/net/eathena/npcrecv.cpp
index 617ceb9ba..522ce6ad4 100644
--- a/src/net/eathena/npcrecv.cpp
+++ b/src/net/eathena/npcrecv.cpp
@@ -44,7 +44,7 @@ void NpcRecv::processNpcCutin(Net::MessageIn &msg)
{
Ea::NpcRecv::mRequestLang = false;
const std::string image = msg.readString(64, "image name");
- const CutIn cutin = fromInt(msg.readUInt8("type"), CutIn);
+ const CutInT cutin = fromInt(msg.readUInt8("type"), CutInT);
cutInWindow->show(image, cutin);
}