summaryrefslogtreecommitdiff
path: root/src/net/ea/equipbackend.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/ea/equipbackend.h')
-rw-r--r--src/net/ea/equipbackend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/ea/equipbackend.h b/src/net/ea/equipbackend.h
index aa278dad0..f51598fb1 100644
--- a/src/net/ea/equipbackend.h
+++ b/src/net/ea/equipbackend.h
@@ -44,7 +44,7 @@ class EquipBackend final : public Equipment::Backend
A_DELETE_COPY(EquipBackend)
- Item *getEquipment(const int index) const override final A_WARN_UNUSED
+ Item *getEquipment(const int index) const final A_WARN_UNUSED
{
int invyIndex = mEquipment[index];
if (invyIndex == -1)
@@ -57,7 +57,7 @@ class EquipBackend final : public Equipment::Backend
return nullptr;
}
- void clear() override final
+ void clear() final
{
Inventory *const inv = PlayerInfo::getInventory();
if (!inv)