View Single Post
  #2  
Old 06-30-2010, 10:42 PM
pfyon's Avatar
pfyon
Discordant
 
Join Date: Mar 2009
Location: Ottawa
Posts: 495
Default

Posted it in your other thread, but here's the diff to let it compile (haven't fully tested, but compiles without warnings and EQEmuLoginServer starts without issues):
Code:
Index: Client.cpp
===================================================================
--- Client.cpp  (revision 59)
+++ Client.cpp  (working copy)
@@ -127,7 +127,7 @@
        }

        unsigned int mode = *((unsigned int*)data);
-       if(mode == (unsigned int)LoginMode::lm_from_world)
+       if(mode == (unsigned int) lm_from_world)
        {
                log->Log(log_network, "Session ready indicated logged in from world(unsupported feature), disconnecting.");
                connection->Close();
Reply With Quote