X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gtk%2Fxboard.c;h=e269958d6d7f0deab9b6ffdc021e987a89b3daff;hb=80b7ad96d781916a2964f0e31088dfe04c8fea63;hp=7922133988108fe00bfb5caf7c697733c58773e0;hpb=5f8c62afe87259d178655c2b57edf7af80b5e166;p=xboard.git diff --git a/gtk/xboard.c b/gtk/xboard.c index 7922133..e269958 100644 --- a/gtk/xboard.c +++ b/gtk/xboard.c @@ -1773,7 +1773,7 @@ void ModeHighlight () { static int oldPausing = FALSE; - static GameMode oldmode = (GameMode) -1; + static GameMode oldMode = (GameMode) -1; char *wname; if (!boardWidget) return; @@ -1791,7 +1791,7 @@ ModeHighlight () } } - wname = ModeToWidgetName(oldmode); + wname = ModeToWidgetName(oldMode); if (wname != NULL) { MarkMenuItem(wname, False); } @@ -1801,7 +1801,7 @@ ModeHighlight () } if(oldMode == TwoMachinesPlay) EnableNamedMenuItem("Mode.MachineMatch", True); MarkMenuItem("Mode.MachineMatch", matchMode && matchGame < appData.matchGames); - oldmode = gameMode; + oldMode = gameMode; /* Maybe all the enables should be handled here, not just this one */ EnableNamedMenuItem("Mode.Training", gameMode == Training || gameMode == PlayFromGameFile);