Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed May 29, 2005
1 parent 963cefc commit ef878b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions doomsday/Src/Common/hu_msg.c
Expand Up @@ -277,7 +277,7 @@ char ForeignTranslation(unsigned char ch)
* strcatQuoted
*
*/
void strcatQuoted(char *dest, char *src)
static void StrCatQuoted(char *dest, char *src)
{
int k = strlen(dest) + 1, i;

Expand Down Expand Up @@ -535,7 +535,7 @@ void HU_sendMessage(char *msg)
if(chat_to == HU_BROADCAST)
{
strcpy(buff, "chat ");
strcatQuoted(buff, msg);
StrCatQuoted(buff, msg);
Con_Execute(buff, false);
}
else
Expand All @@ -545,7 +545,7 @@ void HU_sendMessage(char *msg)
if(players[i].plr->ingame && cfg.PlayerColor[i] == chat_to)
{
sprintf(buff, "chatNum %d ", i);
strcatQuoted(buff, msg);
StrCatQuoted(buff, msg);
Con_Execute(buff, false);
}
}
Expand Down Expand Up @@ -680,4 +680,4 @@ int CCmdMsgRefresh(int argc, char **argv)
message_on = true;
message_counter = HU_MSGTIMEOUT;
return true;
}
}
2 changes: 1 addition & 1 deletion doomsday/Src/Common/hu_stuff.c
Expand Up @@ -1090,4 +1090,4 @@ void Draw_EndZoom(void)
{
gl.MatrixMode(DGL_MODELVIEW);
gl.PopMatrix();
}
}
6 changes: 3 additions & 3 deletions doomsday/Src/Common/mn_menu.c
Expand Up @@ -51,9 +51,9 @@
# include "jDoom/m_argv.h"
# include "jDoom/s_sound.h"
# include "jDoom/doomstat.h"
# include "jDoom/P_local.h"
# include "jDoom/p_local.h"
# include "jDoom/m_menu.h"
# include "jDoom/mn_def.h"
# include "jDoom/Mn_def.h"
# include "jDoom/wi_stuff.h"
# include "Common/x_hair.h"
# include "Common/p_saveg.h"
Expand Down Expand Up @@ -4389,4 +4389,4 @@ int CCmdMenuAction(int argc, char **argv)
Con_Execute(buf, false);
}
return true;
}
}

0 comments on commit ef878b7

Please sign in to comment.