mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 14:57:46 -04:00
cso support
git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@303 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
93c0d147a1
commit
6d741b3258
6 changed files with 17 additions and 11 deletions
|
@ -535,7 +535,7 @@ static int sound_thread(SceSize args, void *argp)
|
|||
|
||||
// shouln't happen, but just in case
|
||||
if (samples_made - samples_done >= samples_block*3) {
|
||||
lprintf("sthr: block skip (%i)\n", samples_made - samples_done);
|
||||
//lprintf("sthr: block skip (%i)\n", samples_made - samples_done);
|
||||
samples_done += samples_block; // skip
|
||||
snd_playptr += samples_block;
|
||||
}
|
||||
|
|
|
@ -185,7 +185,7 @@ struct my_dirent
|
|||
static unsigned short file2color(const char *fname)
|
||||
{
|
||||
const char *ext = fname + strlen(fname) - 3;
|
||||
static const char *rom_exts[] = { "zip", "bin", "smd", "gen", "iso" };
|
||||
static const char *rom_exts[] = { "zip", "bin", "smd", "gen", "iso", "cso" };
|
||||
static const char *other_exts[] = { "gmv", "pat" };
|
||||
int i;
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ extern void blit1(void);
|
|||
#define CAN_HANDLE_240_LINES 1
|
||||
|
||||
// logging emu events
|
||||
#define EL_LOGMASK 0 // (EL_STATUS|EL_ANOMALY|EL_UIO|EL_SRAMIO) // xffff
|
||||
#define EL_LOGMASK EL_STATUS // (EL_STATUS|EL_ANOMALY|EL_UIO|EL_SRAMIO) // xffff
|
||||
|
||||
//#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
|
||||
#define dprintf(x...)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue