mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
new 32x renderers, auto fskip change, massive refactoring
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@855 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
9bb5d91c48
commit
5a68108691
35 changed files with 925 additions and 307 deletions
|
@ -230,10 +230,10 @@ static void vidResetMode(void)
|
|||
|
||||
if (PicoOpt&0x10) {
|
||||
} else if (currentConfig.EmuOpt&0x80) {
|
||||
PicoDrawSetColorFormat(1);
|
||||
PicoDrawSetOutFormat(PDF_RGB555, 0);
|
||||
PicoScanBegin = EmuScanBegin16;
|
||||
} else {
|
||||
PicoDrawSetColorFormat(-1);
|
||||
PicoDrawSetOutFormat(PDF_NONE, 0);
|
||||
PicoScanBegin = EmuScanBegin8;
|
||||
}
|
||||
if ((PicoOpt&0x10) || !(currentConfig.EmuOpt&0x80)) {
|
||||
|
@ -306,7 +306,7 @@ void pemu_forced_frame(int opts)
|
|||
if (giz_screen == NULL)
|
||||
giz_screen = fb_lock(1);
|
||||
|
||||
PicoDrawSetColorFormat(1);
|
||||
PicoDrawSetOutFormat(PDF_RGB555, 0);
|
||||
PicoScanBegin = EmuScanBegin16;
|
||||
Pico.m.dirtyPal = 1;
|
||||
PicoFrameDrawOnly();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue