diff --git a/source/sw/src/panel.cpp b/source/sw/src/panel.cpp index 837b62b3f..d9cacf00e 100644 --- a/source/sw/src/panel.cpp +++ b/source/sw/src/panel.cpp @@ -7923,6 +7923,15 @@ PANEL_STATE ps_PanelKeyYellow[] = #include "saveable.h" +static saveable_code saveable_panel_code[] = +{ + SAVE_CODE(pSuicide), + SAVE_CODE(SwordBlur), + SAVE_CODE(SpecialUziRetractFunc), + SAVE_CODE(FistBlur), + SAVE_CODE(StringTimer), +}; + static saveable_data saveable_panel_data[] = { SAVE_DATA(ps_PresentSword), @@ -8065,8 +8074,8 @@ static saveable_data saveable_panel_data[] = saveable_module saveable_panel = { // code - NULL, - 0, + saveable_panel_code, + SIZ(saveable_panel_code), // data saveable_panel_data, diff --git a/source/sw/src/text.h b/source/sw/src/text.h index c4398a083..066f98131 100644 --- a/source/sw/src/text.h +++ b/source/sw/src/text.h @@ -44,4 +44,6 @@ void PutStringInfoLine(PLAYERp pp, const char *string); void PutStringInfoLine2(PLAYERp pp, const char *string); void pClearTextLine(PLAYERp pp,int y); void pMenuClearTextLine(PLAYERp pp); + +void StringTimer(PANEL_SPRITEp psp); END_SW_NS