mirror of https://github.com/stella-emu/stella.git
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
//============================================================================
|
|
//
|
|
// SSSS tt lll lll
|
|
// SS SS tt ll ll
|
|
// SS tttttt eeee ll ll aaaa
|
|
// SSSS tt ee ee ll ll aa
|
|
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
|
// SS SS tt ee ll ll aa aa
|
|
// SSSS ttt eeeee llll llll aaaaa
|
|
//
|
|
// Copyright (c) 1995-2006 by Bradford W. Mott and the Stella team
|
|
//
|
|
// See the file "license" for information on usage and redistribution of
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
//
|
|
// $Id: SettingsUNIX.cxx,v 1.19 2006-12-18 12:53:33 stephena Exp $
|
|
//============================================================================
|
|
|
|
#include "bspf.hxx"
|
|
#include "Settings.hxx"
|
|
#include "SettingsUNIX.hxx"
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
SettingsUNIX::SettingsUNIX(OSystem* osystem)
|
|
: Settings(osystem)
|
|
{
|
|
// This argument is only valid for Linux/UNIX, and will eventually be removed
|
|
setInternal("accurate", "false");
|
|
setInternal("gl_lib", "libGL.so");
|
|
setInternal("gl_vsync", "false"); // Most Linux GL implementations don't support this yet
|
|
}
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
SettingsUNIX::~SettingsUNIX()
|
|
{
|
|
}
|