Changed default setting for video to gl, not opengl, as was erroneously in the previous version.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@967 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
markgrebe 2006-01-15 23:43:40 +00:00
parent 9d1a9977c3
commit 5a5151def7
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
//
// $Id: SettingsMACOSX.cxx,v 1.7 2006-01-14 21:36:29 stephena Exp $
// $Id: SettingsMACOSX.cxx,v 1.8 2006-01-15 23:43:40 markgrebe Exp $
//============================================================================
#include <cassert>
@ -41,7 +41,7 @@ void prefsSave(void);
SettingsMACOSX::SettingsMACOSX(OSystem* osystem)
: Settings(osystem)
{
set("video", "opengl"); // Use opengl mode by default
set("video", "gl"); // Use opengl mode by default
set("gl_lib", "libGL.so");
}