mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-27 16:10:48 +01:00
cleanup: fix typo
This commit is contained in:
parent
0fa9df4c7b
commit
065b7ead87
@ -496,9 +496,9 @@ different internally (encrypted, different versions, etc) and not always can be
|
||||
- *ngc_pdt*: `.pdt`
|
||||
- *ngc_pdt_split*: `.pdt`
|
||||
- Codecs: NGC_DSP
|
||||
- **mus_krone.c**
|
||||
- Krone .MUS header [*MUS_KRONE*]
|
||||
- *mus_krone*: `.mus`
|
||||
- **mus_krome.c**
|
||||
- Krome .MUS header [*MUS_KROME*]
|
||||
- *mus_krome*: `.mus`
|
||||
- Codecs: NGC_DSP
|
||||
- **dc_asd.c**
|
||||
- ASD Header [*DC_ASD*]
|
||||
|
@ -1086,7 +1086,7 @@ static const meta_info meta_info_list[] = {
|
||||
{meta_YMF, "Yuke's .YMF Header"},
|
||||
{meta_FAG, "Radical .FAG Header"},
|
||||
{meta_PS2_MIHB, "Sony MultiStream MIC header"},
|
||||
{meta_MUS_KRONE, "Krone .MUS header"},
|
||||
{meta_MUS_KROME, "Krome .MUS header"},
|
||||
{meta_WII_SNG, "SNG DSP Header"},
|
||||
{meta_RSD, "Radical RSD header"},
|
||||
{meta_DC_ASD, "ASD Header"},
|
||||
|
@ -503,7 +503,7 @@
|
||||
<ClCompile Include="meta\musc.c" />
|
||||
<ClCompile Include="meta\musx.c" />
|
||||
<ClCompile Include="meta\mus_acm.c" />
|
||||
<ClCompile Include="meta\mus_krone.c" />
|
||||
<ClCompile Include="meta\mus_krome.c" />
|
||||
<ClCompile Include="meta\mus_vc.c" />
|
||||
<ClCompile Include="meta\myspd.c" />
|
||||
<ClCompile Include="meta\naac.c" />
|
||||
|
@ -1330,7 +1330,7 @@
|
||||
<ClCompile Include="meta\mus_acm.c">
|
||||
<Filter>meta\Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="meta\mus_krone.c">
|
||||
<ClCompile Include="meta\mus_krome.c">
|
||||
<Filter>meta\Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="meta\mus_vc.c">
|
||||
|
@ -296,7 +296,7 @@ VGMSTREAM * init_vgmstream_ps2_mihb(STREAMFILE * streamFile);
|
||||
VGMSTREAM * init_vgmstream_ngc_pdt_split(STREAMFILE * streamFile);
|
||||
VGMSTREAM * init_vgmstream_ngc_pdt(STREAMFILE * streamFile);
|
||||
|
||||
VGMSTREAM* init_vgmstream_mus_krone(STREAMFILE* sf);
|
||||
VGMSTREAM* init_vgmstream_mus_krome(STREAMFILE* sf);
|
||||
|
||||
VGMSTREAM * init_vgmstream_rsd(STREAMFILE * streamFile);
|
||||
|
||||
|
@ -3,8 +3,8 @@
|
||||
#include "../coding/coding.h"
|
||||
|
||||
|
||||
/* .mus - from Krone games [Ty: The Tasmanian Tiger 2 (GC), Star Wars: The Force Unleashed (Wii)] */
|
||||
VGMSTREAM* init_vgmstream_mus_krone(STREAMFILE* sf) {
|
||||
/* .mus - from Krome games [Ty: The Tasmanian Tiger 2 (GC), Star Wars: The Force Unleashed (Wii)] */
|
||||
VGMSTREAM* init_vgmstream_mus_krome(STREAMFILE* sf) {
|
||||
VGMSTREAM* vgmstream = NULL;
|
||||
uint32_t start_offset, data_size;
|
||||
int channels, loop_flag, interleave;
|
||||
@ -36,7 +36,7 @@ VGMSTREAM* init_vgmstream_mus_krone(STREAMFILE* sf) {
|
||||
vgmstream = allocate_vgmstream(channels, loop_flag);
|
||||
if (!vgmstream) goto fail;
|
||||
|
||||
vgmstream->meta_type = meta_MUS_KRONE;
|
||||
vgmstream->meta_type = meta_MUS_KROME;
|
||||
vgmstream->num_samples = num_samples;
|
||||
vgmstream->sample_rate = read_u16be(0x6c,sf);
|
||||
|
@ -128,7 +128,7 @@ init_vgmstream_t init_vgmstream_functions[] = {
|
||||
init_vgmstream_ps2_mihb,
|
||||
init_vgmstream_ngc_pdt_split,
|
||||
init_vgmstream_ngc_pdt,
|
||||
init_vgmstream_mus_krone,
|
||||
init_vgmstream_mus_krome,
|
||||
init_vgmstream_dc_asd,
|
||||
init_vgmstream_spsd,
|
||||
init_vgmstream_rsd,
|
||||
|
@ -257,7 +257,7 @@ typedef enum {
|
||||
meta_DSP_SADB, /* .sad */
|
||||
meta_DSP_WSI, /* .wsi */
|
||||
meta_IDSP_TT, /* Traveller's Tales games */
|
||||
meta_MUS_KRONE,
|
||||
meta_MUS_KROME,
|
||||
meta_DSP_WII_WSD, /* Phantom Brave (WII) */
|
||||
meta_WII_NDP, /* Vertigo (Wii) */
|
||||
meta_DSP_YGO, /* Konami: Yu-Gi-Oh! The Falsebound Kingdom (NGC), Hikaru no Go 3 (NGC) */
|
||||
|
Loading…
Reference in New Issue
Block a user