mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-17 23:27:37 +00:00
781d7da6b1
- Support for the MPEG2 videos in BS1/2 has been dropped. The MPEG2 videos were lossy, and support for them complicated the code a lot. - Support for the non-existing enhanced MPEG cutscene packs for BS1 has been dropped. As a consequence, the credits player and the splitted audio stream players used for these packs has been removed - The original Smacker videos for both games are now supported, using our Smacker player (which is based off publically available specs and FFMPEG) - The animations now use the common video player code. Both the Smacker videos and our DXA video packs are supported svn-id: r38236
30 lines
412 B
Makefile
30 lines
412 B
Makefile
MODULE := engines/sword1
|
|
|
|
MODULE_OBJS := \
|
|
animation.o \
|
|
control.o \
|
|
debug.o \
|
|
detection.o \
|
|
eventman.o \
|
|
logic.o \
|
|
memman.o \
|
|
menu.o \
|
|
mouse.o \
|
|
music.o \
|
|
objectman.o \
|
|
resman.o \
|
|
router.o \
|
|
screen.o \
|
|
sound.o \
|
|
staticres.o \
|
|
sword1.o \
|
|
text.o
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_SWORD1), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|