From 31d69a49e87e1388c4cfdbccb7d256572283d308 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 11 Aug 2008 22:45:11 +0000 Subject: (svn r14047) -Codechange: move chatmessage handling to the network directory as that's the only case chat messages are used. Furthermore remove any trace of chatmessages when compiling without network support. --- src/video/sdl_v.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/video/sdl_v.cpp') diff --git a/src/video/sdl_v.cpp b/src/video/sdl_v.cpp index d6e274fc0..4ccf90abe 100644 --- a/src/video/sdl_v.cpp +++ b/src/video/sdl_v.cpp @@ -518,7 +518,7 @@ void VideoDriver_SDL::MainLoop() } else { SDL_CALL SDL_Delay(1); _screen.dst_ptr = _sdl_screen->pixels; - DrawChatMessage(); + NetworkDrawChatMessage(); DrawMouseCursor(); DrawSurfaceToScreen(); } -- cgit v1.2.3-54-g00ecf