From: <pa...@us...> - 2013-01-30 19:39:07
|
Revision: 4866 http://sourceforge.net/p/fuse-emulator/code/4866 Author: pak21 Date: 2013-01-30 19:39:05 +0000 (Wed, 30 Jan 2013) Log Message: ----------- Correct video timing for +2A/+3 etc machines (libspectrum part of patch #305). Modified Paths: -------------- trunk/libspectrum/hacking/ChangeLog trunk/libspectrum/timings.c Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2013-01-28 20:54:40 UTC (rev 4865) +++ trunk/libspectrum/hacking/ChangeLog 2013-01-30 19:39:05 UTC (rev 4866) @@ -938,3 +938,5 @@ 20130103 configure.ac: add trailing slash to URL of bug tracker (Stuart). 20130126 accessor.pl,doc/libspectrum.txt,snap_accessors.txt,snapshot.c,szx.c: add support for storing ZX Printer state (bug #274) (Fred). +20130130 timings.c: correct video timing for +2A/+3 etc machines (part of + patch #305). Modified: trunk/libspectrum/timings.c =================================================================== --- trunk/libspectrum/timings.c 2013-01-28 20:54:40 UTC (rev 4865) +++ trunk/libspectrum/timings.c 2013-01-30 19:39:05 UTC (rev 4866) @@ -70,9 +70,9 @@ /* Pentagon */ { 3584000, 1792000, 36, 128, 28, 32, 64, 192, 48, 16, 36, 17988 }, /* +2A */ - { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14362 }, + { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14365 }, /* +3 */ - { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14362 }, + { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14365 }, /* Unknown machine */ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* 16K */ @@ -82,7 +82,7 @@ /* Scorpion */ { 3500000, 1750000, 24, 128, 32, 40, 48, 192, 48, 24, 36, 14336 }, /* +3e */ - { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14362 }, + { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14365 }, /* SE */ { 3500000, 1750000, 24, 128, 24, 48, 47, 192, 48, 25, 32, 14336 }, /* TS2068 */ @@ -94,7 +94,7 @@ /* 48K NTSC */ { 3527500, 0, 24, 128, 24, 48, 24, 192, 25, 23, 32, 8960 }, /* 128Ke */ - { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14362 }, + { 3546900, 1773400, 24, 128, 24, 52, 48, 192, 48, 23, 32, 14365 }, }; libspectrum_dword This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |