mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +00:00
Fix return types of osdcmd_dumpmapstate() and osdcmd_playerinfo()
git-svn-id: https://svn.eduke32.com/eduke32@7445 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
36d848c09d
commit
5fbc429503
1 changed files with 2 additions and 2 deletions
|
@ -1168,7 +1168,7 @@ static int osdcmd_name(osdcmdptr_t parm)
|
||||||
return OSDCMD_OK;
|
return OSDCMD_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int32_t osdcmd_dumpmapstate(osdfuncparm_t const * const)
|
static int osdcmd_dumpmapstate(osdfuncparm_t const * const)
|
||||||
{
|
{
|
||||||
// this command takes no parameters
|
// this command takes no parameters
|
||||||
|
|
||||||
|
@ -1177,7 +1177,7 @@ static int32_t osdcmd_dumpmapstate(osdfuncparm_t const * const)
|
||||||
return OSDCMD_OK;
|
return OSDCMD_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int32_t osdcmd_playerinfo(osdfuncparm_t const * const)
|
static int osdcmd_playerinfo(osdfuncparm_t const * const)
|
||||||
{
|
{
|
||||||
OSD_Printf("Your player index is %d.\n", myconnectindex);
|
OSD_Printf("Your player index is %d.\n", myconnectindex);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue