diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-08 17:54:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-08 23:41:37 +0300 |
commit | 763e91044a4e9c8905ee082457cb42da36a38cc0 (patch) | |
tree | a73f68e02e083fc9b236ea7a18ef406dd5ea0a46 /src/client.cpp | |
parent | dd3b6609584e59e8c3b67624c9800c5d0e2a2208 (diff) | |
download | manaverse-763e91044a4e9c8905ee082457cb42da36a38cc0.tar.gz manaverse-763e91044a4e9c8905ee082457cb42da36a38cc0.tar.bz2 manaverse-763e91044a4e9c8905ee082457cb42da36a38cc0.tar.xz manaverse-763e91044a4e9c8905ee082457cb42da36a38cc0.zip |
Add missing function parameters.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp index 8106c01e5..750c17bd2 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -222,7 +222,7 @@ namespace A_DELETE_COPY(AccountListener) - void action(const ActionEvent &) override final + void action(const ActionEvent &event A_UNUSED) override final { client->setState(State::CHAR_SELECT); } @@ -236,7 +236,7 @@ namespace A_DELETE_COPY(LoginListener) - void action(const ActionEvent &) override final + void action(const ActionEvent &event A_UNUSED) override final { client->setState(State::PRE_LOGIN); } |