summaryrefslogtreecommitdiff
path: root/src/monster_race.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-06-20 22:49:05 +0200
committerBardur Arantsson <bardur@scientician.net>2016-06-20 22:49:05 +0200
commite17e742edb3809d45ce1edc716d71b3bb93056d6 (patch)
treef4570d74cd8f0f31aa198c589808cdfaa1ab2202 /src/monster_race.hpp
parentf693888666c64c75a636be3504e6decb55f2865b (diff)
Make obj_theme a non-POD struct
Diffstat (limited to 'src/monster_race.hpp')
-rw-r--r--src/monster_race.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/monster_race.hpp b/src/monster_race.hpp
index 9fa9f590..94896c64 100644
--- a/src/monster_race.hpp
+++ b/src/monster_race.hpp
@@ -83,8 +83,7 @@ struct monster_race
byte total_visible = 0; /* Amount of this race that are visible */
- obj_theme drops = obj_theme /* The drops type */
- { 0, 0, 0, 0 };
+ obj_theme drops; /* The drops type */
};