Skip to content

Commit

Permalink
Added time traveler to seek test.
Browse files Browse the repository at this point in the history
git-svn-id: https://www.daphne-emu.com:9443/daphnesvn/branches/v_1_0@3162 c98d566b-fa28-4d4c-8a7b-932307ef5c1a
  • Loading branch information
matt committed Jan 28, 2010
1 parent c04ce40 commit f295225
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
3 changes: 3 additions & 0 deletions daphne-changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Daphne Changelog
-------------------------

Next
- Added Time Traveler to seektest.

v1.0.7
- Updated source code so it builds on the latest g++

Expand Down
15 changes: 14 additions & 1 deletion src/game/seektest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -427,12 +427,21 @@ void seektest::set_preset(int val)
m_late2 = 53581; // all black frame
strcpy(m_name, "Us vs Them");
break;
case 20: // Space Aace '91
case 20: // Space Ace '91
m_disc_fps = 29.97;
// NOTE : THESE FRAMES ARE UNVERIFIED, I CAME UP WITH THEM BY USING THE FORMULA IN FRAMEMOD.CPP!!!
m_early1 = 1686; // interlaced frame before "there's borfs ship"
m_early2 = 1687; // first full frame of "there's borfs ship"
strcpy(m_name, "Space Ace '91");
break;
case 21: // Time Traveler
m_disc_fps = 29.97;
m_early1 = 352;
m_early2 = 353;
m_late1 = 53645;
m_late2 = 53646;
strcpy(m_name, "Time Traveler");
break;
default:
printline("SEEKTEST ERROR : unknown preset");
break;
Expand Down Expand Up @@ -526,6 +535,10 @@ bool seektest::handle_cmdline_arg(const char *arg)
{
set_preset(20);
}
else if (strcasecmp(arg, "-timetrav")==0)
{
set_preset(21);
}

// no match
else
Expand Down

0 comments on commit f295225

Please sign in to comment.