mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 11:10:47 +00:00
Fix an unused variable warning with NETCODE=0. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@4389 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6baf8f96f1
commit
dd5f71e3ff
1 changed files with 4 additions and 6 deletions
|
@ -8516,7 +8516,7 @@ int32_t G_StartRTS(int32_t i, int localp)
|
||||||
|
|
||||||
void G_HandleLocalKeys(void)
|
void G_HandleLocalKeys(void)
|
||||||
{
|
{
|
||||||
int32_t i,ch;
|
int32_t i;
|
||||||
int32_t j;
|
int32_t j;
|
||||||
|
|
||||||
// CONTROL_ProcessBinds();
|
// CONTROL_ProcessBinds();
|
||||||
|
@ -8754,11 +8754,9 @@ void G_HandleLocalKeys(void)
|
||||||
G_AddUserQuote(ud.ridecule[i-1]);
|
G_AddUserQuote(ud.ridecule[i-1]);
|
||||||
|
|
||||||
#ifndef NETCODE_DISABLE
|
#ifndef NETCODE_DISABLE
|
||||||
ch = 0;
|
tempbuf[0] = PACKET_MESSAGE;
|
||||||
|
tempbuf[1] = 255;
|
||||||
tempbuf[ch] = PACKET_MESSAGE;
|
tempbuf[2] = 0;
|
||||||
tempbuf[ch+1] = 255;
|
|
||||||
tempbuf[ch+2] = 0;
|
|
||||||
Bstrcat(tempbuf+2,ud.ridecule[i-1]);
|
Bstrcat(tempbuf+2,ud.ridecule[i-1]);
|
||||||
|
|
||||||
i = 2+strlen(ud.ridecule[i-1]);
|
i = 2+strlen(ud.ridecule[i-1]);
|
||||||
|
|
Loading…
Reference in a new issue