mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
Revert "TINSEL: Fix int32 discrepancy" - This reverts commita640e6b489
. Revert "TINSEL: Refactor Notebook and System reels to follow naming conventions" - This reverts commit2cfc3b4ed2
. Revert "TINSEL: Rename IsConvAndNotMove -> isConvAndNotMove" - This reverts commit5ba099f408
. Revert "TINSEL: Rename the public methods in Dialogs to follow convention" - This reverts commit8ef52754a1
. Revert "TINSEL: Rename the private methods in Dialogs to follow convention" - This reverts commita3d0b5206b
. Revert "TINSEL: Add debug commands to add all clues, as well as listing them." - This reverts commitfdfede64ca
. Revert "TINSEL: Implement pointer handling for Notebook" - This reverts commit195b04c9cf
. Revert "TINSEL: Implement polygon-handling for Notebook" - This reverts commit10cce703dc
. Revert "TINSEL: Add initial event support to Notebook." - This reverts commit61c94379cd
. Revert "TINSEL: Close Inventories when switching between them." - This reverts commit337aed1915
. Revert "TINSEL: Implement library function CROSSCLUE" - This reverts commit9519288acd
. Revert "TINSEL: Implement Notebook logic for adding clues and showing pages." - This reverts commit3580c17cc5
. Revert "TINSEL: Implement InventoryOrNotebookActive" - This reverts commit89aefb7794
. Revert "TINSEL: Minor style-fixes" - This reverts commite92fafb955
. Revert "TINSEL: Refactor IsInPolygon to be partially a member-function" - This reverts commitfa7d448051
. Revert "TINSEL: Replace LockMem with GetFrame for FRAME" - This reverts commitec9c630fc5
. Revert "TINSEL: Replace LockMem with GetMultiInit for MULTI_INIT" - This reverts commitfa8e3c506b
. Revert "TINSEL: Further refactor InventoryObjects" - This reverts commit1a2f18e421
.
63 lines
862 B
Makefile
63 lines
862 B
Makefile
MODULE := engines/tinsel
|
|
|
|
MODULE_OBJS := \
|
|
noir/lzss.o \
|
|
actors.o \
|
|
adpcm.o \
|
|
anim.o \
|
|
background.o \
|
|
bg.o \
|
|
bmv.o \
|
|
cliprect.o \
|
|
config.o \
|
|
cursor.o \
|
|
debugger.o \
|
|
dialogs.o \
|
|
drives.o \
|
|
effect.o \
|
|
events.o \
|
|
faders.o \
|
|
font.o \
|
|
graphics.o \
|
|
handle.o \
|
|
heapmem.o \
|
|
inv_objects.o \
|
|
mareels.o \
|
|
metaengine.o \
|
|
move.o \
|
|
movers.o \
|
|
multiobj.o \
|
|
music.o \
|
|
object.o \
|
|
palette.o \
|
|
pcode.o \
|
|
pdisplay.o \
|
|
play.o \
|
|
polygons.o \
|
|
saveload.o \
|
|
savescn.o \
|
|
scene.o \
|
|
sched.o \
|
|
scn.o \
|
|
scroll.o \
|
|
sound.o \
|
|
strres.o \
|
|
sysvar.o \
|
|
text.o \
|
|
timers.o \
|
|
tinlib.o \
|
|
tinsel.o \
|
|
token.o \
|
|
noir/notebook.o \
|
|
noir/sysreel.o \
|
|
|
|
# This module can be built as a plugin
|
|
ifeq ($(ENABLE_TINSEL), DYNAMIC_PLUGIN)
|
|
PLUGIN := 1
|
|
endif
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Detection objects
|
|
DETECT_OBJS += $(MODULE)/detection.o
|