Fixed: bad cycling code

hg/feature/sound
vl 15 years ago
parent 220a3458c2
commit 8049d83f99

@ -79,7 +79,7 @@ class CAHDisplayInfos : public IActionHandler
if( ClientCfg.Local || hasPrivilegeDEV() || hasPrivilegeSGM() || hasPrivilegeGM() || hasPrivilegeSG() || hasPrivilegeEM() || hasPrivilegeVG() ) if( ClientCfg.Local || hasPrivilegeDEV() || hasPrivilegeSGM() || hasPrivilegeGM() || hasPrivilegeSG() || hasPrivilegeEM() || hasPrivilegeVG() )
#endif #endif
{ {
ShowInfos = (ShowInfos++)%6; ShowInfos = (ShowInfos+1)%6;
CGraph::Display = (ShowInfos != 0); CGraph::Display = (ShowInfos != 0);
} }

Loading…
Cancel
Save