summaryrefslogtreecommitdiff
path: root/src/monster2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/monster2.cc')
-rw-r--r--src/monster2.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/monster2.cc b/src/monster2.cc
index 2f78f8b7..c91cacfd 100644
--- a/src/monster2.cc
+++ b/src/monster2.cc
@@ -495,7 +495,7 @@ void delete_monster_idx(int i)
}
/* Wipe the Monster */
- WIPE(m_ptr, monster_type);
+ memset(m_ptr, 0, sizeof(monster_type));
/* Count monsters */
m_cnt--;
@@ -613,7 +613,7 @@ static void compact_monsters_aux(int i1, int i2)
COPY(&m_list[i2], &m_list[i1], monster_type);
/* Wipe the hole */
- WIPE(&m_list[i1], monster_type);
+ memset(&m_list[i1], 0, sizeof(monster_type));
}
@@ -731,7 +731,7 @@ void wipe_m_list(void)
cave[m_ptr->fy][m_ptr->fx].m_idx = 0;
/* Wipe the Monster */
- WIPE(m_ptr, monster_type);
+ memset(m_ptr, 0, sizeof(monster_type));
}
/* Reset "m_max" */