X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fop.cpp;h=9da791b4214565cc8103c9645bb73074b9323f99;hb=80871c4045dd1aa9b60e03b9cc92e7d2835a2387;hp=2978c6dc9541b4ea8e48ce5f9a1cf56b621bcbff;hpb=34c2f4526d11f2139130c4c94920dd7b1c7a6124;p=virtualjaguar diff --git a/src/op.cpp b/src/op.cpp index 2978c6d..9da791b 100644 --- a/src/op.cpp +++ b/src/op.cpp @@ -318,8 +318,6 @@ void DumpFixedObject(uint64 p0, uint64 p1) // // Object Processor main routine // -//Need to fix this so that when an GPU object IRQ happens, we can pick up OP processing -//where we left off. !!! FIX !!! #warning "Need to fix this so that when an GPU object IRQ happens, we can pick up OP processing where we left off. !!! FIX !!!" void OPProcessList(int scanline, bool render) { @@ -342,7 +340,7 @@ bool inhibit; int bitmapCounter = 0; // *** END OP PROCESSOR TESTING ONLY *** - uint32 opCyclesToRun = 10000; // This is a pulled-out-of-the-air value (will need to be fixed, obviously!) + uint32 opCyclesToRun = 30000; // This is a pulled-out-of-the-air value (will need to be fixed, obviously!) // if (op_pointer) WriteLog(" new op list at 0x%.8x scanline %i\n",op_pointer,scanline); while (op_pointer) @@ -454,7 +452,8 @@ WriteLog(" --> List end\n\n"); ypos = TOMReadWord(0xF00046, OP) / 2; // Get the VDB value #endif // Actually, no. Any item less than VDB will get only the lines that hang over VDB displayed. -// So we need to fix this somehow... (and it has... in tom.cpp :-P) +// Actually, this is incorrect. It seems that VDB value is wrong somewhere and that's +// what's causing things to fuck up. Still no idea why. uint32 height = (p0 & 0xFFC000) >> 14; uint32 oldOPP = op_pointer - 8;