From 95a3acfcf5abc2debd959a6afd7ddc7e3cfc1b75 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Fri, 20 Apr 2012 00:01:08 +0200 Subject: [PATCH] Fix key binding of DebugProc The name used for binding was DebugProc, while the ite was named Debug. --- menus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/menus.c b/menus.c index 42e0d9a..1af89f3 100644 --- a/menus.c +++ b/menus.c @@ -844,7 +844,7 @@ MenuItem noMenu[] = { { "", "TestLegality", TestLegalityProc }, #endif { "", "AboutGame", AboutGameEvent }, - { "", "Debug", DebugProc }, + { "", "DebugProc", DebugProc }, { "", "Nothing", NothingProc }, {NULL, NULL, NULL} }; -- 1.7.0.4