random cleanups

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@789 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-09-22 10:51:49 +00:00
parent 94d2199eb1
commit 5e128c6d27
8 changed files with 41 additions and 38 deletions

View file

@ -221,9 +221,8 @@ static int PicoFrameHints(void)
if (PicoLineHook) PicoLineHook();
#endif
// PAL line count might actually be 313 according to Steve Snake, but that would complicate things.
lines = Pico.m.pal ? 312 : 262;
vcnt_wrap = Pico.m.pal ? 0x103 : 0xEB; // based on Gens
lines = scanlines_total;
vcnt_wrap = Pico.m.pal ? 0x103 : 0xEB; // based on Gens, TODO: verify
for (y++; y < lines; y++)
{