- added savepic generation to RR.

This commit is contained in:
Christoph Oelckers 2020-01-14 20:12:08 +01:00
parent 7b6bd34a58
commit 6ace2f8bf0
2 changed files with 8 additions and 0 deletions

View file

@ -148,6 +148,7 @@ struct GameInterface : ::GameInterface
int app_main() override;
void UpdateScreenSize() override;
void FreeGameData() override;
bool GenerateSavePic() override;
bool validate_hud(int) override;
void set_hud_layout(int size) override;
void set_hud_scale(int size) override;

View file

@ -1510,6 +1510,13 @@ void G_DrawRooms(int32_t playerNum, int32_t smoothRatio)
}
}
bool GameInterface::GenerateSavePic()
{
G_DrawRooms(myconnectindex, 65536);
return true;
}
void G_DumpDebugInfo(void)
{
int32_t j,x;