diff options
author | adam <adam> | 2006-07-03 12:25:05 +0000 |
---|---|---|
committer | adam <adam> | 2006-07-03 12:25:05 +0000 |
commit | e5e6d9c54d04d22eaa946681d987fa6b49db58be (patch) | |
tree | 023ef7c5bbd6343b4df8cd8fc08a0b4b7023bff9 /games/scummvm/patches | |
parent | b9a91e76fca08a6cb291e5a84cf4da0305f4e14c (diff) | |
download | pkgsrc-e5e6d9c54d04d22eaa946681d987fa6b49db58be.tar.gz |
Changes 0.9.0:
New Games:
- Added kyra engine (for the Kyrandia series). Currently only the first
part of the series is supported.
- Added support for The Feeble Files
General:
- Fixed a bug that prevented you from overriding the scaler from the command
line for 640x480 games.
- Added subtitle configuration controls to the Launcher options dialogs.
- GUI was completely redesigned and is now themeable.
SCUMM:
- Rewrote the detection code, for improved accuracy and better support of
fan translations. It should now work much better on games with unknown
MD5.
- Added subtitle configuration controls to the options dialog.
- Fixed graphical glitches in several HE games.
- Fixed palette glitches in Big Thinkers 1st Grade.
- Fixed songs in the kitchen of Pajama Sam 1.
SAGA
- Fixed sound distortion in the Inherit the Earth demo.
Simon
- Improved Hebrew support
- Lots of long-overdue cleanups and re-structuring were made to accomodate
for The Feeble Files.
- Fixed a rare MIDI bug that would cause a channel to change volume without
adjusting it to the master volume.
- Fixed delay after introduction of Simon the Sorcerer 1 demo (With speech)
- Fixed music tempo in DOS versions of Simon the Sorcerer 1.
Broken Sword 1:
- Added support for the --save-slot option.
Broken Sword 2:
- Major rewrite of how game resources are accessed in memory. This
should fix alignment issues reported on some platforms.
- Missing data files are handled more gracefully.
Diffstat (limited to 'games/scummvm/patches')
-rw-r--r-- | games/scummvm/patches/patch-aa | 12 | ||||
-rw-r--r-- | games/scummvm/patches/patch-ab | 6 |
2 files changed, 9 insertions, 9 deletions
diff --git a/games/scummvm/patches/patch-aa b/games/scummvm/patches/patch-aa index eb2fd6844cf..2cc5d49e52d 100644 --- a/games/scummvm/patches/patch-aa +++ b/games/scummvm/patches/patch-aa @@ -1,19 +1,19 @@ -$NetBSD: patch-aa,v 1.15 2005/10/31 09:05:34 adam Exp $ +$NetBSD: patch-aa,v 1.16 2006/07/03 12:25:05 adam Exp $ ---- Makefile.orig 2005-10-29 03:00:57.000000000 +0200 +--- Makefile.orig 2006-06-21 23:19:07.000000000 +0200 +++ Makefile @@ -9,7 +9,7 @@ srcdir ?= . DEFINES := -DHAVE_CONFIG_H LDFLAGS := - INCLUDES := -I. -I$(srcdir) + INCLUDES := -I. -I$(srcdir) -I$(srcdir)/engines -LIBS := +LIBS := ${LIBOSSAUDIO} OBJS := MODULES := -@@ -21,8 +21,7 @@ include config.mak - # Uncomment this for stricter compile time code verification - # CXXFLAGS+= -Werror +@@ -18,8 +18,7 @@ MODULE_DIRS := + # Load the make rules generated by configure + include config.mak -CXXFLAGS:= -Wall $(CXXFLAGS) -CXXFLAGS+= -O -Wuninitialized diff --git a/games/scummvm/patches/patch-ab b/games/scummvm/patches/patch-ab index 10399111c48..1c81d2cbdb3 100644 --- a/games/scummvm/patches/patch-ab +++ b/games/scummvm/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.5 2005/10/31 09:05:34 adam Exp $ +$NetBSD: patch-ab,v 1.6 2006/07/03 12:25:05 adam Exp $ ---- common.rules.orig 2005-10-29 03:01:11.000000000 +0200 +--- common.rules.orig 2006-06-21 23:19:07.000000000 +0200 +++ common.rules @@ -27,6 +27,8 @@ MODULE_LIB-$(MODULE) := $(MODULE)/lib$(n # If not building as a plugin, add the object files to the main OBJS list @@ -9,5 +9,5 @@ $NetBSD: patch-ab,v 1.5 2005/10/31 09:05:34 adam Exp $ +CPPFLAGS+= -I$(BUILDLINK_DIR)/include + # Convenience library target - $(MODULE_LIB-$(MODULE)): $(MODULE_OBJS) + $(MODULE_LIB-$(MODULE)): $(MODULE_OBJS-$(MODULE)) -$(RM) $@ |