From 748325301dad80966807483e6c563ca9ac27ff4f Mon Sep 17 00:00:00 2001 From: stephena Date: Sun, 21 Dec 2008 00:12:15 +0000 Subject: [PATCH] Fixed annoying OSX warning that I've been looking at for about 2 years. It seems the fix for OpenGL issues in OSX do work, so now the OpenGL code is working the same on all systems again. So now I can get to the fullscreen positioning issues ... git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1569 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba --- stella/src/macosx/SDLMain.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stella/src/macosx/SDLMain.m b/stella/src/macosx/SDLMain.m index bea869fe3..2bba57db6 100755 --- a/stella/src/macosx/SDLMain.m +++ b/stella/src/macosx/SDLMain.m @@ -4,7 +4,7 @@ Feel free to customize this file to suit your needs */ -/* $Id: SDLMain.m,v 1.5 2005-08-24 05:30:00 markgrebe Exp $ */ +/* $Id: SDLMain.m,v 1.6 2008-12-21 00:12:15 stephena Exp $ */ #import "SDL.h" #import "SDLMain.h" @@ -230,7 +230,7 @@ int main (int argc, char **argv) setupParentDirectory(); [SDLApplication poseAsClass:[NSApplication class]]; - NSApplicationMain (argc, argv); + NSApplicationMain (argc, (const char **)argv); return 0; }