summaryrefslogtreecommitdiff
path: root/src/d/d_save/d_save.cpp
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2021-01-31 22:25:03 -0500
committerGitHub <noreply@github.com>2021-01-31 22:25:03 -0500
commitf15faab7566d7e69eedeb64e917bdd06775ecc46 (patch)
tree1baf597e5b6f01cc35a1a472709c45745facdcfb /src/d/d_save/d_save.cpp
parentb595f0d0bf2bde1d0e55cc1f6cfc5df71cb07d98 (diff)
os: const-qualify string arguments (#111)
Avoids the need to cast away const from string literals.
Diffstat (limited to 'src/d/d_save/d_save.cpp')
-rw-r--r--src/d/d_save/d_save.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_save/d_save.cpp b/src/d/d_save/d_save.cpp
index 79d7960f23..0ee4b00adc 100644
--- a/src/d/d_save/d_save.cpp
+++ b/src/d/d_save/d_save.cpp
@@ -373,7 +373,7 @@ u8 dSv_player_item_c::getItem(int item_idx, bool isComboItem) const {
}
// 合成アイテム不定===>%d, %d\n
// Uncertain combination item===>%d, %d\n
- OSReport_Error((char*)lbl_80379234 + 9, item_id_2, item_id_1);
+ OSReport_Error(lbl_80379234 + 9, item_id_2, item_id_1);
}
}
}