make the world safe for .rstm once more

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@346 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-07-19 16:23:27 +00:00
parent 0deff6bc92
commit 8815bbe479
4 changed files with 4 additions and 1 deletions

View File

@ -126,6 +126,7 @@ File types supported by this version of vgmstream:
- .bg00 (PS2 ADPCM)
- .dvi (DVI IMA ADPCM)
- .kcey (EACS IMA ADPCM)
- .rstm (PS2 ADPCM)
Enjoy!
-hcs

View File

@ -92,7 +92,7 @@ META_OBJS=meta/adx_header.o \
meta/sat_dvi.o \
meta/ps2_bg00.o \
meta/dc_kcey.o \
meta/ps2_rstm.o
meta/ps2_rstm.o
OBJECTS=vgmstream.o streamfile.o util.o $(CODING_OBJS) $(LAYOUT_OBJS) $(META_OBJS)

View File

@ -70,5 +70,6 @@ libmeta_la_SOURCES += ps2_sfs.c
libmeta_la_SOURCES += sat_dvi.c
libmeta_la_SOURCES += ps2_bg00.c
libmeta_la_SOURCES += dc_kcey.c
libmeta_la_SOURCES += ps2_rstm.c
EXTRA_DIST = meta.h

View File

@ -87,6 +87,7 @@ gchar *vgmstream_exts [] = {
"dvi",
"bg00",
"kcey",
"rstm",
/* terminator */
NULL
};