From de5493c730bba0ec783a8bcde8d8e42b8b2cee57 Mon Sep 17 00:00:00 2001 From: Bjorn Winckler Date: Tue, 16 Sep 2008 23:08:22 +0200 Subject: [PATCH] Correct bug in previous commit --- src/MacVim/MMVimController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MacVim/MMVimController.m b/src/MacVim/MMVimController.m index 82e05b68..1a198e90 100644 --- a/src/MacVim/MMVimController.m +++ b/src/MacVim/MMVimController.m @@ -925,7 +925,7 @@ static BOOL isUnsafeMessage(int msgid); [self scheduleClose]; } else if (SetFullscreenColorMsgID == msgid) { const int *bg = (const int*)[data bytes]; - NSColor *color = [NSColor colorWithRgbInt:bg]; + NSColor *color = [NSColor colorWithRgbInt:*bg]; [windowController setFullscreenBackgroundColor:color]; // IMPORTANT: When adding a new message, make sure to update -- 2.11.4.GIT