From 63f24129cfa482f03c977ffc40c21bd9e49df1de Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 5 Sep 2004 03:53:18 +0000 Subject: [PATCH] Maybe fix that bug by using the system font. I cannot think of a reason that it did not work before other than the font defaulted to something that could not display the string "Initializing Hardware..." --- stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm b/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm index 4bc0108fc1..b5253fcd9b 100644 --- a/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm +++ b/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm @@ -34,7 +34,9 @@ void MakeNewCocoaWindow() { view = [window contentView]; [view addSubview:text]; /* This retains text */ [view addSubview:iView]; /* This retains iView */ + [text setFont:[NSFont systemFontOfSize:12]]; [text setString:@"Initializing Hardware..."]; + [text display]; [window makeKeyAndOrderFront:nil]; }