1.30 release

git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@78 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-03-25 00:08:03 +00:00
parent e5589947f5
commit 53c908bb97
2 changed files with 4 additions and 3 deletions

View file

@ -799,7 +799,7 @@ static void cd_menu_loop_options(void)
} else { } else {
if (PicoCDBuffers < 64) PicoCDBuffers = 64; if (PicoCDBuffers < 64) PicoCDBuffers = 64;
else PicoCDBuffers <<= 1; else PicoCDBuffers <<= 1;
if (PicoCDBuffers > 4096) PicoCDBuffers = 4096; if (PicoCDBuffers > 8*1024) PicoCDBuffers = 8*1024; // 16M
} }
break; break;
case 7: currentConfig.PicoOpt^=0x1000; break; case 7: currentConfig.PicoOpt^=0x1000; break;

View file

@ -4,6 +4,7 @@
#define PORT_CONFIG_H #define PORT_CONFIG_H
#define CPU_CALL #define CPU_CALL
#define NO_IONBF
// draw2.c // draw2.c
#define START_ROW 0 // which row of tiles to start rendering at? #define START_ROW 0 // which row of tiles to start rendering at?
@ -12,8 +13,8 @@
// pico.c // pico.c
#define CAN_HANDLE_240_LINES 1 #define CAN_HANDLE_240_LINES 1
//#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__) #define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
#define dprintf(x...) //#define dprintf(x...)
#endif //PORT_CONFIG_H #endif //PORT_CONFIG_H