diff --git a/code/ryzom/client/src/interface_v3/action_handler_debug.cpp b/code/ryzom/client/src/interface_v3/action_handler_debug.cpp index b9f1bade0..aac90d171 100644 --- a/code/ryzom/client/src/interface_v3/action_handler_debug.cpp +++ b/code/ryzom/client/src/interface_v3/action_handler_debug.cpp @@ -79,7 +79,7 @@ class CAHDisplayInfos : public IActionHandler if( ClientCfg.Local || hasPrivilegeDEV() || hasPrivilegeSGM() || hasPrivilegeGM() || hasPrivilegeSG() || hasPrivilegeEM() || hasPrivilegeVG() ) #endif { - ShowInfos = (ShowInfos++)%6; + ShowInfos = (ShowInfos+1)%6; CGraph::Display = (ShowInfos != 0); }