VAS: Fix function name

This commit is contained in:
EdnessP 2024-04-05 02:05:18 +03:00
parent f41808a5dd
commit 2d05def9d5
3 changed files with 4 additions and 1 deletions

View File

@ -1002,4 +1002,6 @@ VGMSTREAM* init_vgmstream_gwb_gwd(STREAMFILE* sf);
VGMSTREAM* init_vgmstream_cbx(STREAMFILE* sf);
VGMSTREAM* init_vgmstream_vas(STREAMFILE* sf);
#endif /*_META_H*/

View File

@ -2,7 +2,7 @@
#include "../coding/coding.h"
/* VAS - Manhunt 2 [PSP] */
VGMSTREAM* init_vgmstream_rstm_rockstar(STREAMFILE* sf) {
VGMSTREAM* init_vgmstream_vas(STREAMFILE* sf) {
VGMSTREAM* vgmstream = NULL;
off_t stream_offset;
size_t stream_size;

View File

@ -524,6 +524,7 @@ init_vgmstream_t init_vgmstream_functions[] = {
init_vgmstream_gwb_gwd,
init_vgmstream_s_pack,
init_vgmstream_cbx,
init_vgmstream_vas,
/* lower priority metas (no clean header identity, somewhat ambiguous, or need extension/companion file to identify) */
init_vgmstream_scd_pcm,