From 910c21c00c9be54ac3517dab20e1e63df8f93eb7 Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 22 Oct 2005 16:34:28 +0000 Subject: [PATCH] OS X frontend was directly calling the backend's wants_statusbar() function, whereas it ought to have been calling the midend's one. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@6413 cda61777-01e9-0310-a592-d414129be87e --- osx.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osx.m b/osx.m index e19db27..bbe47f3 100644 --- a/osx.m +++ b/osx.m @@ -540,7 +540,7 @@ struct frontend { /* * Create the status bar, which will just be an NSTextField. */ - if (ourgame->wants_statusbar()) { + if (midend_wants_statusbar(me)) { status = [[NSTextField alloc] initWithFrame:NSMakeRect(0,0,100,50)]; [status setEditable:NO]; [status setSelectable:NO]; -- 2.11.0