mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
sms wip: random tweaks, refactoring (palette, sound stuff, etc)
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@764 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
460603fa81
commit
19954be196
13 changed files with 168 additions and 136 deletions
|
@ -235,6 +235,7 @@ void PicoFrameMS(void)
|
|||
int lines = is_pal ? 313 : 262;
|
||||
int cycles_line = is_pal ? 58020 : 58293; /* (226.6 : 227.7) * 256 */
|
||||
int cycles_done = 0, cycles_aim = 0;
|
||||
int skip = PicoSkipFrame;
|
||||
int lines_vis = 192;
|
||||
int hint; // Hint counter
|
||||
int y;
|
||||
|
@ -246,7 +247,7 @@ void PicoFrameMS(void)
|
|||
{
|
||||
pv->v_counter = Pico.m.scanline = y;
|
||||
|
||||
if (y < lines_vis)
|
||||
if (y < lines_vis && !skip)
|
||||
PicoLineMode4(y);
|
||||
|
||||
if (y <= lines_vis)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue