summaryrefslogtreecommitdiff
path: root/src/d/d_save.cpp
diff options
context:
space:
mode:
authorMax Roncace <me@caseif.net>2025-11-26 23:01:55 -0500
committerGitHub <noreply@github.com>2025-11-26 20:01:55 -0800
commit90133fb1cb3fa78e4e30f83c99df465a1666dddd (patch)
tree11776aefb34ab0608978135b49ca54ab13dfac99 /src/d/d_save.cpp
parent3080360a2a3b845078375f303cea187bf9e52976 (diff)
Small d_a_mg_rod fixes (#2874)
Diffstat (limited to 'src/d/d_save.cpp')
-rw-r--r--src/d/d_save.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_save.cpp b/src/d/d_save.cpp
index a3edc46f49..947259da5e 100644
--- a/src/d/d_save.cpp
+++ b/src/d/d_save.cpp
@@ -1317,7 +1317,7 @@ BOOL dSv_event_c::isEventBit(const u16 i_no) const {
}
/* 800349E0-80034A04 02F320 0024+00 0/0 12/12 17/17 .text setEventReg__11dSv_event_cFUsUc */
-void dSv_event_c::setEventReg(const u16 i_reg, u8 i_no) {
+void dSv_event_c::setEventReg(u16 i_reg, u8 i_no) {
mEvent[i_reg >> 8] &= ~(u8)i_reg;
mEvent[i_reg >> 8] |= i_no;
}