diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-18 11:33:08 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-10-18 11:33:08 -0400 |
| commit | 9e29fd3c68e471560b8910dcde3028b2a4d487cd (patch) | |
| tree | 28ef085323ebdb56b7ba7a44ac7ff2bfff3e8190 /src/d/d_s_play.cpp | |
| parent | 202851599fb67079504af37fe0f5b944bfa51e19 (diff) | |
More warning cleanup
Diffstat (limited to 'src/d/d_s_play.cpp')
| -rw-r--r-- | src/d/d_s_play.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/d/d_s_play.cpp b/src/d/d_s_play.cpp index 17684ccc..aff9ac16 100644 --- a/src/d/d_s_play.cpp +++ b/src/d/d_s_play.cpp @@ -37,8 +37,7 @@ #include "m_Do/m_Do_dvd_thread.h" #include "m_Do/m_Do_graphic.h" #include "m_Do/m_Do_machine.h" -#include "printf.h" -#include "string.h" +#include <stdio.h> static Vec dummy_3569; @@ -1505,7 +1504,7 @@ static scene_method_class l_dScnPly_Method = { (process_method_func)dScnPly_Draw, }; -extern scene_process_profile_definition g_profile_PLAY_SCENE = { +scene_process_profile_definition g_profile_PLAY_SCENE = { fpcLy_ROOT_e, 1, fpcPi_CURRENT_e, @@ -1518,7 +1517,7 @@ extern scene_process_profile_definition g_profile_PLAY_SCENE = { &l_dScnPly_Method, }; -extern scene_process_profile_definition g_profile_OPENING_SCENE = { +scene_process_profile_definition g_profile_OPENING_SCENE = { fpcLy_ROOT_e, 1, fpcPi_CURRENT_e, @@ -1531,7 +1530,7 @@ extern scene_process_profile_definition g_profile_OPENING_SCENE = { &l_dScnPly_Method, }; -extern scene_process_profile_definition g_profile_OPENING2_SCENE = { +scene_process_profile_definition g_profile_OPENING2_SCENE = { fpcLy_ROOT_e, 1, fpcPi_CURRENT_e, |
