From 0518239203cbdc3edc6c230c41e4e13108c4c033 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 2 Aug 2003 03:06:49 +0000 Subject: [PATCH] Oops, wrong one. --- stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm b/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm index 0240cd8908..fc1ac1f878 100644 --- a/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm +++ b/stepmania/src/arch/LoadingWindow/LoadingWindow_Cocoa.mm @@ -16,7 +16,7 @@ void MakeNewCocoaWindow() { NSImage *image = [NSImage imageNamed:@"loading"]; NSSize size = [image size]; float height = size.height; - NSImageView *iView = [[[NSImageView alloc] initWithFrame:NSMakeRect(0, height, size.width, height+1)] autorelease]; + NSImageView *iView = [[[NSImageView alloc] initWithFrame:NSMakeRect(0, height+1, size.width, height)] autorelease]; NSView *view; NSRect rect; rect.origin = NSMakePoint(0, height);