summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_obj_lp.cpp
diff options
context:
space:
mode:
authorkipcode66 <kipcode66@gmail.com>2025-12-22 05:20:08 -0500
committerGitHub <noreply@github.com>2025-12-22 02:20:08 -0800
commit47ac1d4a4cbc5a6835c80d80e7756d6b4a6cd0a6 (patch)
tree555fb336b8cc397e259582340c3a95d843a4add6 /src/d/actor/d_a_obj_lp.cpp
parent4045f16667fe6903243801e1155d086ae8df27b1 (diff)
4th round of standard compiler fixes (#2984)
* 4th round of standard compiler fixes * use of fpcM_ERROR_PROCESS_ID_e in gWolfBustersID
Diffstat (limited to 'src/d/actor/d_a_obj_lp.cpp')
-rw-r--r--src/d/actor/d_a_obj_lp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_obj_lp.cpp b/src/d/actor/d_a_obj_lp.cpp
index 374a9215e7..aff7b4de82 100644
--- a/src/d/actor/d_a_obj_lp.cpp
+++ b/src/d/actor/d_a_obj_lp.cpp
@@ -59,7 +59,7 @@ static int target_info_count;
static void* s_ks_sub(void* param_1, void* param_2) {
if (fopAcM_IsActor(param_1) && fopAcM_GetName(param_1) == 0x60) {
if (target_info_count < 10) {
- target_info[target_info_count] = (int)param_1;
+ target_info[target_info_count] = (intptr_t)param_1;
target_info_count++;
}
return param_1;
@@ -220,7 +220,7 @@ static int daObj_Lp_Execute(obj_lp_class* i_this) {
target_info[i] = 0;
}
- target_info[0] = (int)dComIfGp_getPlayer(0);
+ target_info[0] = (intptr_t)dComIfGp_getPlayer(0);
target_info_count = 1;
if (strcmp(dComIfGp_getStartStageName(), "D_MN05") == 0) {