mirror of https://github.com/stella-emu/stella.git
Final version bump to 2.3. I suspect there may still be problems with
the OSX port, but I'm not getting feedback, so I'll do a release and then deal with the complaints :( git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1226 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
a0df5ec2bc
commit
ed4e219a43
|
@ -9,7 +9,7 @@
|
|||
SSSS ttt eeeee llll llll aaaaa
|
||||
|
||||
===============================================================================
|
||||
Release 2.2 for Linux, Mac OSX and Windows
|
||||
Release 2.3 for Linux, Mac OSX and Windows
|
||||
===============================================================================
|
||||
|
||||
The Atari 2600 Video Computer System (VCS), introduced in 1977, was the most
|
||||
|
@ -21,23 +21,21 @@ of your favorite Atari 2600 games again! Stella was originally developed for
|
|||
Linux by Bradford W. Mott, however, it has been ported to a number of other
|
||||
platforms.
|
||||
|
||||
This is the 2.2 release of Stella for Linux, Mac OSX and Windows. Distributions
|
||||
for other operating systems will appear as they become available. The
|
||||
distributions currently available are:
|
||||
This is the 2.3 release of Stella for Linux, Mac OSX, Windows and GP2X.
|
||||
Distributions for other operating systems will appear as they become available.
|
||||
The distributions currently available are:
|
||||
|
||||
* Binary distribution in RPM format for Linux (stella-2.2-1.i586.rpm)
|
||||
* Binary distribution in RPM format for Linux (stella-2.3-1.i586.rpm)
|
||||
|
||||
* Binary distribution for Mac OSX (StellaOSX2.2.dmg.gz)
|
||||
* Binary distribution for Mac OSX (StellaOSX2.3.dmg.gz)
|
||||
|
||||
* Binary installer (exe) for Windows (stella-2.2-win32.exe)
|
||||
* Binary installer (exe) for Windows (stella-2.3-win32.exe)
|
||||
|
||||
* Binary zip for Windows CE (stella-2.2-wince.zip)
|
||||
* Binary zip for GP2X (stella-2.3-gp2x.zip)
|
||||
|
||||
* Binary zip for GP2X (stella-2.2-gp2x.zip)
|
||||
* Source code in SRPM format for Linux RPM-based systems (stella-2.3-1.src.rpm)
|
||||
|
||||
* Source code in SRPM format for Linux RPM-based systems (stella-2.1-1.src.rpm)
|
||||
|
||||
* Source code distribution for all platforms (stella-2.1-src.tar.gz)
|
||||
* Source code distribution for all platforms (stella-2.3-src.tar.gz)
|
||||
|
||||
PLEASE DO NOT WRITE ASKING FOR ROM IMAGES TO USE WITH STELLA! ALL SUCH
|
||||
REQUESTS WILL BE IGNORED!
|
||||
|
|
|
@ -12,6 +12,105 @@
|
|||
Release History
|
||||
===============================================================================
|
||||
|
||||
2.2 to 2.3: (December 22, 2006)
|
||||
|
||||
* NOTE: Because of the many changes in this release, all settings
|
||||
will be reset to defaults. If this doesn't happen for you, it will be
|
||||
necessary to manually delete your previous settings.
|
||||
|
||||
* Potentially huge speedups in software rendering mode, both in emulation
|
||||
and UI modes. Deactivating 'dirty rects' uses these new modes, which
|
||||
can be 2-3 times faster for many configurations.
|
||||
|
||||
* For UI navigation, changed from using 'joymouse' to the more familiar
|
||||
'tabbing' functionality, where you move from object to object by use of
|
||||
some tab key. As a result, completely removed the 'joymouse' commandline
|
||||
argument and all associated functionality.
|
||||
|
||||
* Added event remapping for UI events, separate from events while in
|
||||
emulation mode.
|
||||
|
||||
* Added support for PAL60 ROMs, which use the PAL palette and resolution
|
||||
but run at NTSC timing (60Hz). Added ROM property for this, and updated
|
||||
the internal properties database for many PAL60 ROMs.
|
||||
|
||||
* Added support for user-definable palettes. For now, only one extra palette
|
||||
is supported, but in the future we may have them specified per-ROM.
|
||||
|
||||
* Fixed bug in PAL colour-loss emulation, which wasn't actually being done
|
||||
for the original Stella and z26 palettes.
|
||||
|
||||
* Fixed several TIA-related emulation bugs as reported on AtariAge. More
|
||||
fixes will come with the TIA rewrite, due in the next release.
|
||||
|
||||
* Added new scaler infrastructure, replacing the '-zoom' commandline argument
|
||||
with '-scale_ui' and '-scale_tia'. This means the UI and emulation can now
|
||||
be scaled independently.
|
||||
|
||||
* Added '-gl_vsync' commandline argument and associated UI elements, which
|
||||
uses synchronization to vertical blank interrupt in OpenGL on supported
|
||||
systems. This eliminates tearing in OpenGL rendering.
|
||||
|
||||
* Changed naming of snapshots and state files. These files are now
|
||||
named based on the names given in the properties database, and no longer
|
||||
use the 'md5sum' name. As a result, state files from previous versions
|
||||
will no longer work unless they're manually renamed. Related to this,
|
||||
removed the '-ssname' commandline argument.
|
||||
|
||||
* Fixed bug where 'Snapshot saved' appeared when taking snapshots in
|
||||
succession.
|
||||
|
||||
* Added a 'Previous directory' entry to the top of each listing while
|
||||
in ROM Browse mode, which is equivalent to the 'Go Up' button. This makes
|
||||
it easier to navigate the filesystem, since you never have to 'tab out'
|
||||
of the ROM listing.
|
||||
|
||||
* Added all sound related commandline options to the UI, so you no
|
||||
longer have to use the commandline to set those options.
|
||||
|
||||
* Added new property to ROM properties specifying whether to swap paddles
|
||||
plugged into a virtual port. This eliminates the need to manually set the
|
||||
paddle mode for those ROMs that don't use paddle zero by default.
|
||||
|
||||
* Added a 'Defaults' button to the Game Properties dialog, which resets
|
||||
the ROM properties to the internal defaults, deleting that ROMs properties
|
||||
from the external properties file.
|
||||
|
||||
* Fixed bug whereby modified ROM properties weren't being reloaded when
|
||||
restarting a ROM.
|
||||
|
||||
* Made 'phosphor' and 'phosphor blend' a ROM property, meaning it can be
|
||||
set per-ROM.
|
||||
|
||||
* Added support for relocating the base Stella directory, by setting the
|
||||
environment variable 'STELLA_BASEDIR'. This must be done each time before
|
||||
Stella starts.
|
||||
|
||||
* Added '-fastscbios' commandline argument, which speeds up loading of
|
||||
vertical bars in Supercharger ROMs, and made it the default.
|
||||
|
||||
* Added '-autoslot' commandline argument, which automatically switches
|
||||
to the next available slot after saving a state. This defaults to off,
|
||||
and must be set from the commandline.
|
||||
|
||||
* Fixed bug in debugger command 'runto', which could enter an infinite
|
||||
loop under some conditions.
|
||||
|
||||
* Updated configure/build toolchain so patching is no longer required for
|
||||
Debian packages.
|
||||
|
||||
* Removed dependency on PNG library (PNG snapshots are still present, but the
|
||||
actual library is no longer required).
|
||||
|
||||
* For the OSX port, improved OpenGL performance on Mac Mini using Intel
|
||||
GMA950 video hardware.
|
||||
|
||||
* For the GP2X port, added support for PAL ROMs, and updated SDL to use
|
||||
hardware scaling.
|
||||
|
||||
Have fun!
|
||||
|
||||
|
||||
2.1 to 2.2: (April 7, 2006)
|
||||
|
||||
* Added new ROM browser option which works like a normal filesystem
|
||||
|
@ -79,8 +178,6 @@
|
|||
screen size. A message is now shown indicating that PAL ROMs are not
|
||||
yet supported.
|
||||
|
||||
Have fun!
|
||||
|
||||
|
||||
2.0.1 to 2.1: (January 29, 2006)
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
License Information and Copyright Notice
|
||||
===============================================================================
|
||||
|
||||
Copyright (C) 1995-2005 Bradford W. Mott <bwmott@acm.org>
|
||||
Copyright (C) 1995-2006 Bradford W. Mott <bwmott@acm.org> and the Stella Team
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
This is release 2.1 of Stella. Stella is a multi-platform Atari 2600 VCS
|
||||
This is release 2.3 of Stella. Stella is a multi-platform Atari 2600 VCS
|
||||
emulator which allows you to play all of your favorite Atari 2600 games
|
||||
on your PC. You'll find the Stella Users Manual in the docs subdirectory.
|
||||
If you'd like to verify that you have the latest release of Stella visit
|
||||
|
@ -10,4 +10,4 @@ the Stella Website at:
|
|||
Enjoy,
|
||||
|
||||
The Stella Team
|
||||
January 29, 2006
|
||||
December 22, 2006
|
||||
|
|
|
@ -299,6 +299,9 @@ vertical bars in Supercharger ROMs, and made it the default.</li>
|
|||
to the next available slot after saving a state. This defaults to off,
|
||||
and must be set from the commandline.</li>
|
||||
|
||||
<li>Fixed bug in debugger command 'runto', which could enter an infinite
|
||||
loop under some conditions.</li>
|
||||
|
||||
<li>Updated configure/build toolchain so patching is no longer required for Debian
|
||||
packages.</li>
|
||||
|
||||
|
|
|
@ -13,13 +13,13 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: Version.hxx,v 1.19 2006-12-18 16:44:39 stephena Exp $
|
||||
// $Id: Version.hxx,v 1.20 2006-12-20 12:42:54 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#ifndef VERSION_HXX
|
||||
#define VERSION_HXX
|
||||
|
||||
#define STELLA_BASE_VERSION "2.3_rc1"
|
||||
#define STELLA_BASE_VERSION "2.3"
|
||||
|
||||
#ifdef NIGHTLY_BUILD
|
||||
#define STELLA_VERSION STELLA_BASE_VERSION "pre-" NIGHTLY_BUILD
|
||||
|
@ -33,6 +33,6 @@
|
|||
// For each new release, this should only be bumped if there have been
|
||||
// major changes in some settings; changes which could stop Stella from
|
||||
// actually working.
|
||||
#define STELLA_SETTINGS_VERSION "2.3_rc1"
|
||||
#define STELLA_SETTINGS_VERSION "2.3"
|
||||
|
||||
#endif
|
||||
|
|
|
@ -598,7 +598,7 @@ static const char* DefProps[][23] = {
|
|||
{ "2517827950fee41a3b9de60275c8aa6a", "Activision", "", "Fishing Derby (1980) (Activision) [p1]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "188", "", "", "" },
|
||||
{ "25a943e9d5e312b516660b0627352448", "", "", "Image - Baboon (Interlaced Demo 1) (15-02-2003) (TJ)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "25e73efb9a6edf119114718bd2f646ba", "", "", "Miss Piggy's Wedding (Prototype) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "28", "195", "", "", "" },
|
||||
{ "265a85f66544eaf95fda06c3d9e48abf", "", "", "Tunnel Demo (Cycling Colours) (29-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "2683d29a282dd059535ac3bb250f540d", "", "", "Space Treat (12-01-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "270229c6d5578446e6a588492e4e5910", "", "", "Space Invaders 2 (Space Invaders Hack)", "Hack of Space Invaders (Atari)", "", "", "4K", "", "", "", "", "", "", "", "", "", "", "42", "200", "", "", "" },
|
||||
{ "277cca62014fceebb46c549bac25a2e3", "Activision", "AG-002", "Boxing (1981) (Activision) [o1]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "", "8", "140", "", "", "", "", "" },
|
||||
{ "27a3c5216b6c6e96e321634973b73784", "", "", "Greeting Cart Atari Coin (V1) (SnailSoft)(PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
|
@ -616,7 +616,7 @@ static const char* DefProps[][23] = {
|
|||
{ "2d76c5d1aad506442b9e9fb67765e051", "Apollo", "", "Lost Luggage (1981) (Apollo) (NTSC) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "38", "196", "", "", "" },
|
||||
{ "2e0aed5bb619edcefa3fafb4fbe7c551", "", "", "Qb (2.06) (Retroactive) (NTSC)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "Yes", "", "" },
|
||||
{ "2e663eaa0d6b723b645e643750b942fd", "Atari", "CX2634 / 75121", "Golf (1978) (Atari) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "8", "152", "36", "191", "", "", "" },
|
||||
{ "2ec6b045cfd7bc52d9cdfd1b1447d1e5", "Activision", "AG-009", "Freeway (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "PAL", "8", "144", "61", "201", "", "", "" },
|
||||
{ "2eda6a49a49fcb2b674ea9e160b6a617", "Kyle Pittman", "", "Rambo in Afghanistan by Kyle Pittman (Riddle of the Sphinx Hack)", "Hack of Riddle of the Sphinx (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "39", "186", "", "", "" },
|
||||
{ "2f273c423471d125d32d1d54d58f063a", "Parker Bros", "PB5080", "Gyruss (1984) (Parker Bros) [b1]", "", "Rare", "", "", "", "", "", "", "", "", "", "", "", "", "47", "180", "Yes", "", "" },
|
||||
{ "3025bdc30b5aec9fb40668787f67d24c", "", "", "Demo Image Series #14 - Two Marios (4K Interleaved Chronocolour Vertical Movement) (05-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "3051b6071cb26377cd428af155e1bfc4", "", "CX2607 / 6699828 / 4975115", "Canyon Bomber (1978) (Atari) [o1]", "Uses the Paddle Controllers", "Uncommon", "", "", "", "", "", "", "Paddles", "Paddles", "Yes", "", "", "", "47", "195", "", "", "" },
|
||||
|
@ -1190,7 +1190,7 @@ static const char* DefProps[][23] = {
|
|||
{ "25d4be3309b89583c6b39d9f93bf654f", "Activision", "AX-015", "Chopper Command (1982) (Activision) [o1]", "", "Uncommon", "", "4K", "", "", "", "", "", "", "", "", "8", "152", "49", "183", "", "", "" },
|
||||
{ "25f2e760cd7f56b88aac88d63757d41b", "Activision", "AG-002", "Boxing (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "", "", "", "", "", "", "", "", "PAL", "8", "140", "64", "201", "", "", "" },
|
||||
{ "262ccb882ff617d9b4b51f24aee02cbe", "Atari", "CX26154", "Super Football (1988) (Atari) (PAL) [!]", "", "Uncommon", "", "F6SC", "", "", "", "", "", "", "", "PAL", "4", "152", "64", "189", "", "", "" },
|
||||
{ "2683d29a282dd059535ac3bb250f540d", "", "", "Space Treat (12-01-2003) (Fabrizio Zavagli)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "268f46038e29301568fa9e443e16e960", "", "", "Pitfall Unlimited (Atarius Maximus)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" },
|
||||
{ "26f4f8b098609164effef7809e0121e1", "", "", "Oystron (V2.7) (Piero Cavina) (PD)", "", "New Release", "", "", "", "", "", "", "", "", "", "", "", "", "35", "195", "", "", "" },
|
||||
{ "2723e442d55d741a8e2d9293108cd5ed", "Tigervision", "7-011", "Miner 2049er Volume II (1983) (Tigervision) [b1]", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "", "8", "144", "60", "212", "Yes", "", "" },
|
||||
{ "277c7281ac945b8331e2e6fcad560c11", "Starpath", "AR-4401", "Survival Island (2 of 3) (1983) (Starpath) (PAL)", "", "Rare", "", "AR", "", "", "", "", "", "", "", "PAL", "", "", "38", "200", "", "", "No" },
|
||||
|
@ -1225,8 +1225,8 @@ static const char* DefProps[][23] = {
|
|||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "2e3728f3086dc3e71047ffd6b2d9f015", "Atari", "", "Outlaw (32-in-1) (Atari) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "58", "230", "", "", "" },
|
||||
{ "2e82a1628ef6c735c0ab8fa92927e9b0", "Atari", "CX26109", "Sorcerer's Apprentice (1983) (Atari) (PAL) [!]", "", "Rare", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "46", "227", "", "", "" },
|
||||
{ "2eb1277d623b303062ec5654eeaa3c73", "Spiceware", "SW-01", "Medieval Mayhem (NTSC)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "", "", "" },
|
||||
{ "2eda6a49a49fcb2b674ea9e160b6a617", "Kyle Pittman", "", "Rambo in Afghanistan by Kyle Pittman (Riddle of the Sphinx Hack)", "Hack of Riddle of the Sphinx (Imagic)", "New Release (Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "39", "186", "", "", "" },
|
||||
{ "2ec6b045cfd7bc52d9cdfd1b1447d1e5", "Activision", "AG-009", "Freeway (1981) (Activision) (PAL) [!]", "", "Uncommon", "", "2K", "", "", "", "", "", "", "", "PAL", "8", "144", "61", "201", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "2f11ba54609777e2c6a5da9b302c98e8", "Atari", "", "Centipede (1982) (Atari) (Prototype) (PAL) [!]", "", "Prototype", "", "", "", "", "", "", "", "", "", "PAL", "8", "144", "64", "197", "", "", "" },
|
||||
{ "2f66ebf037321ed0442ac4b89ce22633", "Baroque Gaming (Brian Eno)", "", "Warring Worms (Beta 2) (2002) (Baroque Gaming)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "", "", "37", "200", "", "", "" },
|
||||
{ "2facd460a6828e0e476d3ac4b8c5f4f7", "", "", "Sancho - Words (198x) (PAL)", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "", "235", "", "", "" },
|
||||
|
@ -1351,7 +1351,7 @@ static const char* DefProps[][23] = {
|
|||
{ "4c9307de724c36fd487af6c99ca078f2", "Imagic", "IA3409", "Sky Patrol (Imagic) (Prototype)", "", "Prototype", "", "", "", "", "", "", "", "", "", "", "8", "144", "38", "200", "", "", "" },
|
||||
{ "4ca73eb959299471788f0b685c3ba0b5", "Activision", "AX-031", "Frostbite (1983) (Activision)", "", "Rare", "", "", "", "", "", "", "", "", "", "", "8", "152", "41", "194", "", "", "" },
|
||||
{ "4cd796b5911ed3f1062e805a3df33d98", "Tigervision", "7-006", "Springer (1982) (Tigervision)", "", "Extremely Rare", "", "3F", "", "", "", "", "", "", "", "", "", "", "36", "202", "", "", "" },
|
||||
{ "4d38e1105c3a5f0b3119a805f261fcb5", "", "", "Phantom UFO (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "", "" },
|
||||
{ "4d502d6fb5b992ee0591569144128f99", "", "", "Save Mary (1990) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" },
|
||||
{ "4d77f291dca1518d7d8e47838695f54b", "Data Age", "DA 1004", "Airlock (1982) (Data Age) [!]", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "4dcc7e7c2ec0738e26c817b9383091af", "", "", "Unknown Title (bin00026 (200110)) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
|
@ -2372,9 +2372,9 @@ static const char* DefProps[][23] = {
|
|||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "260c787e8925bf3649c8aeae5b97dcc0", "ITT Family Games / Thomas Jentzsch", "", "Hell Driver (ITT Family Games) (NTSC by Thomas Jentzsch)", "", "New Release (Video Format Conversion)", "", "", "", "", "", "", "", "", "", "", "", "", "37", "209", "", "", "" },
|
||||
{ "264e205ff090ddfdd16d507127f79090", "Spiceware", "SW-01", "Medieval Mayhem (PAL)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "PAL", "", "", "", "250", "", "", "" },
|
||||
{ "265a85f66544eaf95fda06c3d9e48abf", "", "", "Tunnel Demo (Cycling Colours) (29-03-2003) (AD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "268f46038e29301568fa9e443e16e960", "", "", "Pitfall Unlimited (Atarius Maximus)", "", "", "", "", "", "", "", "", "", "", "", "", "8", "152", "40", "195", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "271bfd5dc2673d382019f1fb6cab9332", "Starpath", "AR-4200", "Escape from the Mindmaster Preview (1982) (Starpath) (PAL)", "", "Extremely Rare", "", "AR", "", "", "", "", "", "", "", "PAL", "8", "144", "56", "192", "", "", "" },
|
||||
|
@ -2418,7 +2418,7 @@ static const char* DefProps[][23] = {
|
|||
{ "2bc6c53b19e0097a242f22375a6a60ff", "", "", "Droid Demo 2 (David Conrad Schweinsberg) (PD)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "36", "", "", "", "" },
|
||||
{ "2bee7f226d506c217163bad4ab1768c0", "Xonox", "99002", "Ghost Manor (1983) (Xonox) [o1]", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "27", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "2c1ed379ff4e9d3b933ed44c9fbe7ffa", "Spiceware", "SW-01", "Medieval Mayhem (NTSC)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
|
@ -2695,8 +2695,8 @@ static const char* DefProps[][23] = {
|
|||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "4cabc895ea546022c2ecaa5129036634", "Zellers", "", "Ocean City Defender (Zellers)", "", "Extremely Rare", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "4d0a28443f7df5f883cf669894164cfa", "", "", "Beast Invaders (Space Invaders Hack)", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "4d502d6fb5b992ee0591569144128f99", "", "", "Save Mary (1990) (Atari) (Prototype) [!]", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "201", "", "", "" },
|
||||
{ "4d38e1105c3a5f0b3119a805f261fcb5", "", "", "Phantom UFO (PAL) [p1][!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "", "", "59", "", "", "", "" },
|
||||
{ "4d520fcc619612969344d1dbeca5231e", "Spiceware", "SW-01", "Medieval Mayhem (PAL)", "", "Homebrew", "STEREO", "", "", "", "", "", "PADDLES", "PADDLES", "", "PAL", "", "", "", "", "", "", "" },
|
||||
{ "4d7517ae69f95cfbc053be01312b7dba", "Atari", "CX2641 / 99807 / 75105", "Surround (1978) (Atari)", "", "Common", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
{ "4d8396deeabb40b5e8578276eb5a8b6d", "Starsoft", "", "Volleyball (Starsoft) (PAL) [!]", "", "", "", "", "", "", "", "", "", "", "", "PAL", "8", "152", "64", "200", "", "", "" },
|
||||
{ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" },
|
||||
|
|
|
@ -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: Settings.cxx,v 1.104 2006-12-18 16:44:39 stephena Exp $
|
||||
// $Id: Settings.cxx,v 1.105 2006-12-20 12:42:55 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <cassert>
|
||||
|
@ -38,9 +38,9 @@ Settings::Settings(OSystem* osystem)
|
|||
|
||||
setInternal("gl_filter", "nearest");
|
||||
setInternal("gl_aspect", "2.0");
|
||||
setInternal("gl_fsmax", "false");
|
||||
setInternal("gl_fsmax", "true");
|
||||
setInternal("gl_lib", "");
|
||||
setInternal("gl_vsync", "true");
|
||||
setInternal("gl_vsync", "false");
|
||||
|
||||
setInternal("scale_ui", "zoom2x");
|
||||
setInternal("scale_tia", "zoom2x");
|
||||
|
@ -75,7 +75,7 @@ Settings::Settings(OSystem* osystem)
|
|||
setInternal("sssingle", "false");
|
||||
|
||||
setInternal("romdir", "");
|
||||
setInternal("rombrowse", "true");
|
||||
setInternal("rombrowse", "false");
|
||||
setInternal("lastrom", "");
|
||||
setInternal("modtime", "");
|
||||
setInternal("debugheight", "0");
|
||||
|
|
|
@ -20966,7 +20966,7 @@
|
|||
"Cartridge.Rarity" "Homebrew"
|
||||
""
|
||||
|
||||
"Cartridge.MD5" "264e205ff090ddfdd16d507127f79090"
|
||||
"Cartridge.MD5" "4d520fcc619612969344d1dbeca5231e"
|
||||
"Cartridge.Manufacturer" "Spiceware"
|
||||
"Cartridge.ModelNo" "SW-01"
|
||||
"Cartridge.Name" "Medieval Mayhem (PAL)"
|
||||
|
@ -20975,10 +20975,9 @@
|
|||
"Controller.Left" "PADDLES"
|
||||
"Controller.Right" "PADDLES"
|
||||
"Display.Format" "PAL"
|
||||
"Display.Height" "250"
|
||||
""
|
||||
|
||||
"Cartridge.MD5" "2eb1277d623b303062ec5654eeaa3c73"
|
||||
"Cartridge.MD5" "2c1ed379ff4e9d3b933ed44c9fbe7ffa"
|
||||
"Cartridge.Manufacturer" "Spiceware"
|
||||
"Cartridge.ModelNo" "SW-01"
|
||||
"Cartridge.Name" "Medieval Mayhem (NTSC)"
|
||||
|
@ -20988,7 +20987,6 @@
|
|||
"Controller.Right" "PADDLES"
|
||||
""
|
||||
|
||||
|
||||
"Cartridge.MD5" "069c17beb1e8e0557adb8539fdcf6cba"
|
||||
"Cartridge.Name" "Phantom II / Pirate (PAL60)"
|
||||
"Cartridge.Rarity" "Homebrew"
|
||||
|
|
|
@ -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.16 2006-12-18 18:35:26 stephena Exp $
|
||||
// $Id: SettingsMACOSX.cxx,v 1.17 2006-12-20 12:42:56 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <cassert>
|
||||
|
@ -44,6 +44,7 @@ SettingsMACOSX::SettingsMACOSX(OSystem* osystem)
|
|||
{
|
||||
setInternal("video", "gl"); // Use opengl mode by default
|
||||
setInternal("gl_lib", ""); // Let the system decide which lib to use
|
||||
setInternal("gl_vsync", "true"); // OSX almost always supports vsync; let's use it
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
# $Id: stella.SlackBuild,v 1.5 2006-04-05 22:56:04 stephena Exp $
|
||||
# $Id: stella.SlackBuild,v 1.6 2006-12-20 12:42:56 stephena Exp $
|
||||
|
||||
# stella.SlackBuild for Stella 2.x, B. Watson, 2005
|
||||
|
||||
|
@ -13,7 +13,7 @@ die() {
|
|||
exit 1
|
||||
}
|
||||
|
||||
VERSION=2.2
|
||||
VERSION=2.3
|
||||
ARCH=${ARCH-i486}
|
||||
BUILD=1
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
%define name stella
|
||||
%define version 2.2
|
||||
%define version 2.3
|
||||
%define rel 1
|
||||
|
||||
%define build_plf 0
|
||||
|
@ -7,7 +7,6 @@
|
|||
%define enable_gl 1
|
||||
%define enable_sound 1
|
||||
%define enable_debugger 1
|
||||
%define enable_snapshot 1
|
||||
%define enable_joystick 1
|
||||
%define enable_cheats 1
|
||||
%define enable_static 0
|
||||
|
@ -63,11 +62,6 @@ export CXXFLAGS=$RPM_OPT_FLAGS
|
|||
%else
|
||||
--disable-debugger \
|
||||
%endif
|
||||
%if %enable_snapshot
|
||||
--enable-snapshot \
|
||||
%else
|
||||
--disable-snapshot \
|
||||
%endif
|
||||
%if %enable_joystick
|
||||
--enable-joystick \
|
||||
%else
|
||||
|
@ -125,6 +119,9 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
|||
%_datadir/icons/large/%{name}.xpm
|
||||
|
||||
%changelog
|
||||
* Fri Dec 22 2006 Stephen Anthony <stephena@zarb.org> 2.3-1plf2007.0
|
||||
- Packaged 2.3 release for PLF
|
||||
|
||||
* Fri Sep 08 2006 Stephen Anthony <stephena@zarb.org> 2.2-1plf2007.0
|
||||
- Packaged 2.2 release for PLF
|
||||
- Added XDG menu
|
||||
|
|
|
@ -13,13 +13,9 @@
|
|||
// See the file "license" for information on usage and redistribution of
|
||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||
//
|
||||
// $Id: SettingsWin32.cxx,v 1.23 2006-12-08 16:49:41 stephena Exp $
|
||||
// $Id: SettingsWin32.cxx,v 1.24 2006-12-20 12:42:56 stephena Exp $
|
||||
//============================================================================
|
||||
|
||||
#include <sstream>
|
||||
#include <fstream>
|
||||
#include <direct.h>
|
||||
|
||||
#include "bspf.hxx"
|
||||
#include "Settings.hxx"
|
||||
#include "SettingsWin32.hxx"
|
||||
|
@ -28,10 +24,10 @@
|
|||
SettingsWin32::SettingsWin32(OSystem* osystem)
|
||||
: Settings(osystem)
|
||||
{
|
||||
setInternal("fragsize", "2048"); // Anything less than this usually causes sound skipping
|
||||
setInternal("video", "hard"); // Use software mode with hardware surface
|
||||
setInternal("dirtyrects", "false"); // Most Windows systems work better without this
|
||||
setInternal("gl_lib", "opengl32.dll");
|
||||
// Anything less than this usually causes sound skipping
|
||||
setInternal("fragsize", "2048");
|
||||
// Most Windows systems work better without this
|
||||
setInternal("dirtyrects", "false");
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue