From: Shamus Hammons Date: Tue, 1 Jun 2004 19:27:20 +0000 (+0000) Subject: Added some commentary X-Git-Tag: 1.0.7~16 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50f9f1fa8afc9ce093498b556a9b301391d367fe;p=virtualjaguar Added some commentary --- diff --git a/src/blitter.cpp b/src/blitter.cpp index d374194..ce4f0d7 100644 --- a/src/blitter.cpp +++ b/src/blitter.cpp @@ -1,15 +1,17 @@ // // Blitter core // -// by Cal2 +// Originally by David Raingeard // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) -// Cleanups/fixes by James L. Hammons +// Extensive cleanups/fixes by James L. Hammons // + bool specialLog = false; extern int effect_start; extern int blit_start_log; #include "jaguar.h" +#include "blitter.h" #define REG(A) (((uint32)blitter_ram[(A)] << 24) | ((uint32)blitter_ram[(A)+1] << 16) \ | ((uint32)blitter_ram[(A)+2] << 8) | (uint32)blitter_ram[(A)+3]) @@ -931,6 +933,8 @@ Lesse, with pre-add we'd have: |rolls back to here. Hmm. */ +//NOTE: The way to fix the CD BIOS is to uncomment below and comment the stuff after +// the phrase mode mucking around. But it fucks up everything else... a1_x += a1_step_x; a1_y += a1_step_y; a2_x += a2_step_x;