Skip to content

Commit

Permalink
Fixed build after previous commit's removed code
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jan 17, 2012
1 parent 91e49fc commit b1d09ca
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion doomsday/engine/portable/src/net_demo.c
Expand Up @@ -427,7 +427,6 @@ boolean Demo_ReadPacket(void)
// Get the packet.
netBuffer.length = hdr.length - 1;
netBuffer.player = 0; // From the server.
netBuffer.msg.id = 0;
netBuffer.msg.type = lzGetC(playdemo);
lzRead(netBuffer.msg.data, (long) netBuffer.length, playdemo);
//netBuffer.cursor = netBuffer.msg.data;
Expand Down
2 changes: 0 additions & 2 deletions doomsday/engine/portable/src/sys_system.c
Expand Up @@ -109,7 +109,6 @@ void Sys_Init(void)
#endif

VERBOSE( Con_Message("Initializing Network subsystem...\n") )
Huff_Init();
N_Init();

VERBOSE2( Con_Message("Sys_Init: Done in %.2f seconds.\n", (Sys_GetRealTime() - startTime) / 1000.0f) );
Expand All @@ -133,7 +132,6 @@ void Sys_Shutdown(void)
Sys_ShutdownTimer();

Net_Shutdown();
Huff_Shutdown();
// Let's shut down sound first, so Windows' HD-hogging doesn't jam
// the MUS player (would produce horrible bursts of notes).
S_Shutdown();
Expand Down

0 comments on commit b1d09ca

Please sign in to comment.