mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-14 10:37:38 +01:00
Merge pull request #1229 from NicknineTheEagle/ext
Added .vca and .vcb extensions [Pac-Man World (PS1)]
This commit is contained in:
commit
6fa6d1e1bf
@ -574,6 +574,8 @@ static const char* extension_list[] = {
|
||||
"vb", //txth/reserved [Tantei Jinguji Saburo: Mikan no Rupo (PS1)]
|
||||
"vbk",
|
||||
"vbx", //txth/reserved [THE Taxi 2 (PS2)]
|
||||
"vca", //txth/reserved [Pac-Man World (PS1)]
|
||||
"vcb", //txth/reserved [Pac-Man World (PS1)]
|
||||
"vds",
|
||||
"vdm",
|
||||
"vgi", //txth/reserved [Time Crisis II (PS2)]
|
||||
|
@ -45,7 +45,7 @@ void block_update_ubi_sce(off_t block_offset, VGMSTREAM* vgmstream) {
|
||||
|
||||
/* First step is always 0x500, not sure if it's a bug or a feature but the game just takes it as is and
|
||||
* ends up reading 0 from out-of-bounds memory area which causes a pop at the start. Yikes.
|
||||
* It gets clampled later so the rest of the sound plays ok.
|
||||
* It gets clamped later so the rest of the sound plays ok.
|
||||
* We put 89 here as our special index which contains 0 to simulate this.
|
||||
*/
|
||||
if (vgmstream->ch[i].adpcm_step_index == 0x500) {
|
||||
|
@ -8,7 +8,7 @@ VGMSTREAM* init_vgmstream_esf(STREAMFILE* sf) {
|
||||
uint8_t version;
|
||||
off_t start_offset;
|
||||
int loop_flag = 0, bps_flag = 0, hq_flag = 0, codec_flag = 0,
|
||||
sample_rate = 0, channels, bps;
|
||||
sample_rate, channels, bps;
|
||||
|
||||
/* checks */
|
||||
if (!is_id32be(0x00, sf, "ESF\x03") &&
|
||||
|
Loading…
Reference in New Issue
Block a user