Bumped version number.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1660 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2009-01-26 15:05:25 +00:00
parent b51c9f97f8
commit 16b065d941
4 changed files with 8 additions and 11 deletions

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: FrameBufferGL.cxx,v 1.137 2009-01-24 18:11:47 stephena Exp $ // $Id: FrameBufferGL.cxx,v 1.138 2009-01-26 15:05:25 stephena Exp $
//============================================================================ //============================================================================
#ifdef DISPLAY_OPENGL #ifdef DISPLAY_OPENGL
@ -94,9 +94,6 @@ bool FrameBufferGL::loadLibrary(const string& library)
if(myLibraryLoaded) if(myLibraryLoaded)
return true; return true;
if(SDL_WasInit(SDL_INIT_VIDEO) == 0)
SDL_Init(SDL_INIT_VIDEO);
// Try both the specified library and auto-detection // Try both the specified library and auto-detection
bool libLoaded = (library != "" && SDL_GL_LoadLibrary(library.c_str()) >= 0); bool libLoaded = (library != "" && SDL_GL_LoadLibrary(library.c_str()) >= 0);
bool autoLoaded = false; bool autoLoaded = false;

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: SoundNull.cxx,v 1.9 2009-01-01 18:13:35 stephena Exp $ // $Id: SoundNull.cxx,v 1.10 2009-01-26 15:05:25 stephena Exp $
//============================================================================ //============================================================================
#include "Serializer.hxx" #include "Serializer.hxx"

View File

@ -13,7 +13,7 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: SoundNull.hxx,v 1.9 2009-01-01 18:13:35 stephena Exp $ // $Id: SoundNull.hxx,v 1.10 2009-01-26 15:05:25 stephena Exp $
//============================================================================ //============================================================================
#ifndef SOUND_NULL_HXX #ifndef SOUND_NULL_HXX
@ -31,7 +31,7 @@ class Deserializer;
is completely disabled. is completely disabled.
@author Stephen Anthony @author Stephen Anthony
@version $Id: SoundNull.hxx,v 1.9 2009-01-01 18:13:35 stephena Exp $ @version $Id: SoundNull.hxx,v 1.10 2009-01-26 15:05:25 stephena Exp $
*/ */
class SoundNull : public Sound class SoundNull : public Sound
{ {
@ -83,7 +83,7 @@ class SoundNull : public Sound
Initializes the sound device. This must be called before any Initializes the sound device. This must be called before any
calls are made to derived methods. calls are made to derived methods.
*/ */
void initialize() { } void open() { }
/** /**
Should be called to close the sound device. Once called the sound Should be called to close the sound device. Once called the sound

View File

@ -13,13 +13,13 @@
// See the file "license" for information on usage and redistribution of // See the file "license" for information on usage and redistribution of
// this file, and for a DISCLAIMER OF ALL WARRANTIES. // this file, and for a DISCLAIMER OF ALL WARRANTIES.
// //
// $Id: Version.hxx,v 1.47 2009-01-24 17:32:29 stephena Exp $ // $Id: Version.hxx,v 1.48 2009-01-26 15:05:25 stephena Exp $
//============================================================================ //============================================================================
#ifndef VERSION_HXX #ifndef VERSION_HXX
#define VERSION_HXX #define VERSION_HXX
#define STELLA_BASE_VERSION "2.7.1" #define STELLA_BASE_VERSION "2.7.2_cvs"
#ifdef NIGHTLY_BUILD #ifdef NIGHTLY_BUILD
#define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD #define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD