mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
- added savepic generation to RR.
This commit is contained in:
parent
7b6bd34a58
commit
6ace2f8bf0
2 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue