From 5da159c4ebb3f02ffead7d00a489f31ee794d4d5 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 82e05b6841..1a198e90f1 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