From ba6cc56ae8e3742230e657b3a94f098a56732fa6 Mon Sep 17 00:00:00 2001 From: KPhoenix Date: Wed, 16 Aug 2023 15:32:08 -0400 Subject: [PATCH] None to Empty --- Source/panels/spell_icons.cpp | 2 +- Source/panels/spell_icons.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/panels/spell_icons.cpp b/Source/panels/spell_icons.cpp index ff8c0889d..b1b0e9dea 100644 --- a/Source/panels/spell_icons.cpp +++ b/Source/panels/spell_icons.cpp @@ -27,7 +27,7 @@ uint8_t SplTransTbl[256]; /** Maps from SpellID to spelicon.cel frame number. */ const SpellIcon SpellITbl[] = { // clang-format off -/* SpellID::Null */ SpellIcon::None, +/* SpellID::Null */ SpellIcon::Empty, /* SpellID::Firebolt */ SpellIcon::Firebolt, /* SpellID::Healing */ SpellIcon::Healing, /* SpellID::Lightning */ SpellIcon::Lightning, diff --git a/Source/panels/spell_icons.hpp b/Source/panels/spell_icons.hpp index 578ac8e80..3a303c0c0 100644 --- a/Source/panels/spell_icons.hpp +++ b/Source/panels/spell_icons.hpp @@ -38,7 +38,7 @@ enum class SpellIcon : uint8_t { Teleport, Apocalypse, ItemRepair, - None, + Empty, Phasing, StaffRecharge, BoneSpirit,