Skip to content

Commit

Permalink
Fixed: Typos related to __CLIENT__
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Dec 30, 2012
1 parent d1d486a commit fbace41
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doomsday/engine/src/dd_main.cpp
Expand Up @@ -667,7 +667,7 @@ void DD_DestroyGames(void)
*/
void DD_StartTitle(void)
{
#ifdef __CLIENT
#ifdef __CLIENT__
ddfinale_t fin;
if(!Def_Get(DD_DEF_FINALE, "background", &fin)) return;

Expand Down
6 changes: 3 additions & 3 deletions doomsday/engine/src/map/p_mobj.c
Expand Up @@ -291,7 +291,7 @@ D_CMD(InspectMobj)
mobj_t* mo = 0;
thid_t id = 0;
char const *moType = "Mobj";
#ifdef __CLIENT
#ifdef __CLIENT__
clmoinfo_t* info = 0;
#endif

Expand All @@ -312,7 +312,7 @@ D_CMD(InspectMobj)
return false;
}

#ifdef __CLIENT
#ifdef __CLIENT__
info = ClMobj_GetInfo(mo);
if(info) moType = "CLMOBJ";
#endif
Expand All @@ -328,7 +328,7 @@ D_CMD(InspectMobj)
Con_Printf("\n");
}
Con_Printf("Tics:%i ddFlags:%08x\n", mo->tics, mo->ddFlags);
#ifdef __CLIENT
#ifdef __CLIENT__
if(info)
{
Con_Printf("Cltime:%i (now:%i) Flags:%04x\n", info->time, Timer_RealMilliseconds(), info->flags);
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/src/network/net_main.c
Expand Up @@ -537,7 +537,7 @@ void Net_InitGame(void)
ddPlayers[0].shared.inGame = true;
ddPlayers[0].shared.flags |= DDPF_LOCAL;

#ifdef __CLIENT
#ifdef __CLIENT__
clients[0].id = clientID;
#endif
clients[0].ready = true;
Expand Down
2 changes: 1 addition & 1 deletion doomsday/engine/src/render/rend_main.cpp
Expand Up @@ -143,7 +143,7 @@ static boolean firstBspLeaf; // No range checking for the first one.

void Rend_Register()
{
#ifdef __CLIENT
#ifdef __CLIENT__

C_VAR_FLOAT ("rend-camera-fov", &fieldOfView, 0, 1, 179);

Expand Down

0 comments on commit fbace41

Please sign in to comment.