mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
SW: Add PanelSpriteFunc values to saveables
This commit is contained in:
parent
024d4e7297
commit
9eefd3d892
2 changed files with 13 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue