[Scummvm-cvs-logs] scummvm master -> 6a7c87b4a472c8fe7b3ddbaab992f25320f6a14c

lordhoto lordhoto at gmail.com
Mon Aug 8 20:43:42 CEST 2011


This automated email contains information about 4 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
321c0ce027 TINSEL: Code formatting
529919e20b SCI: Remove dead code
d6e0afc002 CONFIGURE: Unify cpu arch detection
6a7c87b4a4 CONFIGURE: Add x86_64 to the CPU architecture list.


Commit: 321c0ce027c00efcd02646fe914a9d23d19560a9
    https://github.com/scummvm/scummvm/commit/321c0ce027c00efcd02646fe914a9d23d19560a9
Author: Max Horn (max at quendi.de)
Date: 2011-08-08T11:33:33-07:00

Commit Message:
TINSEL: Code formatting

Changed paths:
    engines/tinsel/adpcm.cpp



diff --git a/engines/tinsel/adpcm.cpp b/engines/tinsel/adpcm.cpp
index 4ea8355..ca3150c 100644
--- a/engines/tinsel/adpcm.cpp
+++ b/engines/tinsel/adpcm.cpp
@@ -61,7 +61,7 @@ void Tinsel_ADPCMStream::readBufferTinselHeader() {
 int16 Tinsel_ADPCMStream::decodeTinsel(int16 code, double eVal) {
 	double sample;
 
-	sample = (double) code;
+	sample = (double)code;
 	sample *= eVal * _status.predictor;
 	sample += (_status.d0 * _status.K0) + (_status.d1 * _status.K1);
 


Commit: 529919e20bb1be08de4fe52ebe323996ecb9b509
    https://github.com/scummvm/scummvm/commit/529919e20bb1be08de4fe52ebe323996ecb9b509
Author: Max Horn (max at quendi.de)
Date: 2011-08-08T11:33:42-07:00

Commit Message:
SCI: Remove dead code

Changed paths:
    engines/sci/engine/seg_manager.cpp



diff --git a/engines/sci/engine/seg_manager.cpp b/engines/sci/engine/seg_manager.cpp
index ab67da3..1510af8 100644
--- a/engines/sci/engine/seg_manager.cpp
+++ b/engines/sci/engine/seg_manager.cpp
@@ -28,12 +28,6 @@
 namespace Sci {
 
 
-enum {
-	DEFAULT_SCRIPTS = 32,
-	DEFAULT_OBJECTS = 8,			///< default number of objects per script
-	DEFAULT_OBJECTS_INCREMENT = 4	///< Number of additional objects to instantiate if we're running out of them
-};
-
 SegManager::SegManager(ResourceManager *resMan) {
 	_heap.push_back(0);
 


Commit: d6e0afc00277ea17193235ae17219f4a72c55e0f
    https://github.com/scummvm/scummvm/commit/d6e0afc00277ea17193235ae17219f4a72c55e0f
Author: Max Horn (max at quendi.de)
Date: 2011-08-08T11:33:42-07:00

Commit Message:
CONFIGURE: Unify cpu arch detection

Changed paths:
    configure



diff --git a/configure b/configure
index 3f02e26..1725545 100755
--- a/configure
+++ b/configure
@@ -193,7 +193,6 @@ _posix=no
 _endian=unknown
 _need_memalign=yes
 _have_x86=no
-_arm_asm=no
 
 
 
@@ -1686,38 +1685,37 @@ echo "$_need_memalign"
 define_in_config_h_if_yes $_need_memalign 'SCUMM_NEED_ALIGNMENT'
 
 #
-# Check whether we can use x86 asm routines
+# Check the CPU architecture
 #
-echo_n "Compiling for x86... "
+echo_n "Checking host CPU architecture... "
 case $_host_cpu in
-	i386|i486|i586|i686)
+	arm*)
+		echo "ARM"
+		define_in_config_if_yes yes 'USE_ARM_SCALER_ASM'
+		define_in_config_if_yes yes 'USE_ARM_SOUND_ASM'
+		define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM'
+		define_in_config_if_yes yes 'USE_ARM_GFX_ASM'
+		define_in_config_if_yes yes 'USE_ARM_COSTUME_ASM'
+		
+		DEFINES="$DEFINES -DARM_TARGET"
+		;;
+	i[3-6]86)
+		echo "x86"
 		_have_x86=yes
+		define_in_config_h_if_yes $_have_x86 'HAVE_X86'
 		;;
-	*)
-		_have_x86=no
+	mips*)
+		echo "MIPS"
+		DEFINES="$DEFINES -DMIPS_TARGET"
 		;;
-esac
-echo "$_have_x86"
-define_in_config_h_if_yes $_have_x86 'HAVE_X86'
-
-#
-# Check whether to use optimized ARM asm
-#
-echo_n "Compiling for ARM... "
-case $_host_cpu in
-	arm*)
-		_arm_asm=yes
+	ppc*)
+		echo "PowerPC"
+		DEFINES="$DEFINES -DPPC_TARGET"
 		;;
 	*)
-		_arm_asm=no
+		echo "unknown ($_host_cpu)"
 		;;
 esac
-echo "$_arm_asm"
-define_in_config_if_yes "$_arm_asm" 'USE_ARM_SCALER_ASM'
-define_in_config_if_yes "$_arm_asm" 'USE_ARM_SOUND_ASM'
-define_in_config_if_yes "$_arm_asm" 'USE_ARM_SMUSH_ASM'
-define_in_config_if_yes "$_arm_asm" 'USE_ARM_GFX_ASM'
-define_in_config_if_yes "$_arm_asm" 'USE_ARM_COSTUME_ASM'
 
 
 #
@@ -2580,7 +2578,9 @@ POST_OBJS_FLAGS		:= -Wl,--no-whole-archive
 		;;
 	ds)
 		_elf_loader=yes
-		DEFINES="$DEFINES -DARM_TARGET -DELF_LOADER_CXA_ATEXIT -DUNCACHED_PLUGINS -DELF_NO_MEM_MANAGER"
+		DEFINES="$DEFINES -DELF_LOADER_CXA_ATEXIT"
+		DEFINES="$DEFINES -DUNCACHED_PLUGINS"
+		DEFINES="$DEFINES -DELF_NO_MEM_MANAGER"
 _mak_plugins='
 PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/ds/plugin.ld -mthumb-interwork -mno-fpu
 '
@@ -2598,7 +2598,8 @@ POST_OBJS_FLAGS := -Wl,-no-whole-archive
 		;;
 	gamecube | wii)
 		_elf_loader=yes
-		DEFINES="$DEFINES -DPPC_TARGET -DELF_LOADER_CXA_ATEXIT -DUNCACHED_PLUGINS"
+		DEFINES="$DEFINES -DELF_LOADER_CXA_ATEXIT"
+		DEFINES="$DEFINES -DUNCACHED_PLUGINS"
 _mak_plugins='
 PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/wii/plugin.ld
 '
@@ -2651,7 +2652,6 @@ POST_OBJS_FLAGS		:= -Wl,--export-all-symbols -Wl,--no-whole-archive -Wl,--out-im
 		;;
 	ps2)
 		_elf_loader=yes
-		DEFINES="$DEFINES -DMIPS_TARGET"
 _mak_plugins='
 LDFLAGS				+= -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -Wl,-T$(srcdir)/backends/plugins/ps2/main_prog.ld
 PLUGIN_LDFLAGS		+= -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -Wl,-T$(srcdir)/backends/plugins/ps2/plugin.ld -lstdc++ -lc
@@ -2659,7 +2659,7 @@ PLUGIN_LDFLAGS		+= -mno-crt0 $(PS2SDK)/ee/startup/crt0.o -Wl,-T$(srcdir)/backend
 		;;
 	psp)
 		_elf_loader=yes
-		DEFINES="$DEFINES -DMIPS_TARGET -DUNCACHED_PLUGINS"
+		DEFINES="$DEFINES -DUNCACHED_PLUGINS"
 _mak_plugins='
 LDFLAGS				+= -Wl,-T$(srcdir)/backends/plugins/psp/main_prog.ld
 PLUGIN_LDFLAGS		+= -Wl,-T$(srcdir)/backends/plugins/psp/plugin.ld -lstdc++ -lc


Commit: 6a7c87b4a472c8fe7b3ddbaab992f25320f6a14c
    https://github.com/scummvm/scummvm/commit/6a7c87b4a472c8fe7b3ddbaab992f25320f6a14c
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2011-08-08T11:37:42-07:00

Commit Message:
CONFIGURE: Add x86_64 to the CPU architecture list.

This prevents it from shown as "unknown (x86_64)", even though it is an
officially supported platform.

Changed paths:
    configure



diff --git a/configure b/configure
index 1725545..d2e2aa9 100755
--- a/configure
+++ b/configure
@@ -1696,7 +1696,7 @@ case $_host_cpu in
 		define_in_config_if_yes yes 'USE_ARM_SMUSH_ASM'
 		define_in_config_if_yes yes 'USE_ARM_GFX_ASM'
 		define_in_config_if_yes yes 'USE_ARM_COSTUME_ASM'
-		
+
 		DEFINES="$DEFINES -DARM_TARGET"
 		;;
 	i[3-6]86)
@@ -1712,6 +1712,9 @@ case $_host_cpu in
 		echo "PowerPC"
 		DEFINES="$DEFINES -DPPC_TARGET"
 		;;
+	x86_64)
+		echo "x86_64"
+		;;
 	*)
 		echo "unknown ($_host_cpu)"
 		;;






More information about the Scummvm-git-logs mailing list