mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Negligible change to OS string printed at startup.
git-svn-id: https://svn.eduke32.com/eduke32@5539 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b1103bb342
commit
8fc803fee3
3 changed files with 6 additions and 6 deletions
|
@ -107,7 +107,7 @@ static void win_printversion(void)
|
|||
Bstrcat(&str[l], osv.szCSDVersion);
|
||||
}
|
||||
|
||||
initprintf("%s (build %lu.%lu.%lu)\n", str, osv.dwMajorVersion, osv.dwMinorVersion, osv.dwBuildNumber);
|
||||
initprintf("Running on %s (build %lu.%lu.%lu)\n", str, osv.dwMajorVersion, osv.dwMinorVersion, osv.dwBuildNumber);
|
||||
Bfree(str);
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ static const int16_t *MV_GetVolumeTable(int32_t vol);
|
|||
|
||||
static void MV_CalcPanTable(void);
|
||||
|
||||
#define IS_QUIET(ptr) ((void *)(ptr) == (void *)&MV_VolumeTable[0])
|
||||
#define IS_QUIET(ptr) ((void const *)(ptr) == (void *)&MV_VolumeTable[0])
|
||||
|
||||
static int32_t MV_ReverbLevel;
|
||||
static int32_t MV_ReverbDelay;
|
||||
|
@ -83,8 +83,8 @@ char *MV_MixBuffer[MV_NUMBEROFBUFFERS + 1];
|
|||
|
||||
static VoiceNode *MV_Voices = NULL;
|
||||
|
||||
static volatile VoiceNode VoiceList;
|
||||
static volatile VoiceNode VoicePool;
|
||||
static VoiceNode VoiceList;
|
||||
static VoiceNode VoicePool;
|
||||
|
||||
static int32_t MV_MixPage = 0;
|
||||
|
||||
|
|
|
@ -882,7 +882,7 @@ static int32_t osdcmd_name(const osdfuncparm_t *parm)
|
|||
|
||||
static int32_t osdcmd_button(const osdfuncparm_t *parm)
|
||||
{
|
||||
char *p = (char *)parm->name+9; // skip "gamefunc_"
|
||||
char const *p = parm->name+9; // skip "gamefunc_"
|
||||
// if (g_player[myconnectindex].ps->gm == MODE_GAME) // only trigger these if in game
|
||||
CONTROL_OSDInput[CONFIG_FunctionNameToNum(p)] = 1; // FIXME
|
||||
return OSDCMD_OK;
|
||||
|
@ -1290,7 +1290,7 @@ static int32_t osdcmd_password(const osdfuncparm_t *parm)
|
|||
Bmemset(g_netPassword, 0, sizeof(g_netPassword));
|
||||
return OSDCMD_OK;
|
||||
}
|
||||
Bstrncpy(g_netPassword, (char *)(parm->raw) + 9, sizeof(g_netPassword)-1);
|
||||
Bstrncpy(g_netPassword, (parm->raw) + 9, sizeof(g_netPassword)-1);
|
||||
|
||||
return OSDCMD_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue