View Single Post
  #7  
Old 01-11-2011, 11:54 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

Actually that lined seemed to be okay, changing it made no difference. The one right below it was the problem.

changing this fixed it.
Code:
if(mode == (unsigned int)LoginMode::lm_from_world)
To ....

Code:
if(mode == (unsigned int) lm_from_world)
Reply With Quote