mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 19:20:38 +00:00
SW: Added dummy M32RunScript/G_Polymer_UnInit/app_crashhandler/osdcmd_restartvid calls.
Patch from Striker. git-svn-id: https://svn.eduke32.com/eduke32@7520 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c0ad055f6d
commit
c36897e466
1 changed files with 16 additions and 0 deletions
|
@ -5943,6 +5943,22 @@ StdRandomRange(int range)
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// [JM] Probably will need some doing over. !CHECKME!
|
||||||
|
void M32RunScript(const char *s) { UNREFERENCED_PARAMETER(s); }
|
||||||
|
void G_Polymer_UnInit(void) { }
|
||||||
|
void app_crashhandler(void) { }
|
||||||
|
|
||||||
|
int osdcmd_restartvid(const osdfuncparm_t *parm)
|
||||||
|
{
|
||||||
|
UNREFERENCED_PARAMETER(parm);
|
||||||
|
|
||||||
|
videoResetMode();
|
||||||
|
if (videoSetGameMode(fullscreen, xdim, ydim, bpp, upscalefactor))
|
||||||
|
buildputs("restartvid: Reset failed...\n");
|
||||||
|
|
||||||
|
return OSDCMD_OK;
|
||||||
|
}
|
||||||
|
|
||||||
#include "saveable.h"
|
#include "saveable.h"
|
||||||
|
|
||||||
static saveable_data saveable_build_data[] =
|
static saveable_data saveable_build_data[] =
|
||||||
|
|
Loading…
Reference in a new issue