mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
update games/scummvm-tools to 0.7.0
sync with scummvm PR: ports/75799 Submitted by: Miguel Mendez <flynn@energyhq.es.eu.org>
This commit is contained in:
parent
dd21187161
commit
4f5e312d05
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=126018
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= scummvm-tools
|
||||
PORTVERSION= 0.6.0
|
||||
PORTVERSION= 0.7.0
|
||||
CATEGORIES= games emulators
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= scummvm
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (scummvm-tools-0.6.0.tar.bz2) = 09ded7a8177fda1b861731052b8693c4
|
||||
SIZE (scummvm-tools-0.6.0.tar.bz2) = 75514
|
||||
MD5 (scummvm-tools-0.7.0.tar.bz2) = eeebbd4e309a8564dd911d5c26fed2f0
|
||||
SIZE (scummvm-tools-0.7.0.tar.bz2) = 98664
|
||||
|
@ -1,19 +1,19 @@
|
||||
--- simon1decr.c.orig Tue May 27 16:34:14 2003
|
||||
+++ simon1decr.c Tue May 27 16:34:34 2003
|
||||
--- simon1decr.c.orig Mon Apr 12 00:10:19 2004
|
||||
+++ simon1decr.c Tue Jan 4 15:36:39 2005
|
||||
@@ -26,14 +26,9 @@
|
||||
|
||||
#define EndGetM32(a) ((((a)[0])<<24)|(((a)[1])<<16)|(((a)[2])<<8)|((a)[3]))
|
||||
|
||||
-#define SD_GETBIT(var) do { \
|
||||
- if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } \
|
||||
- (var) = bb & 1; bb >>= 1; \
|
||||
-} while (0)
|
||||
+#define SD_GETBIT(var) do { if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } (var) = bb & 1; bb >>= 1; } while (0)
|
||||
|
||||
-#define SD_GETBITS(var, nbits) do { \
|
||||
- bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } \
|
||||
-} while (0)
|
||||
+#define SD_GETBITS(var, nbits) do { bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } } while (0)
|
||||
|
||||
#define SD_TYPE_LITERAL (0)
|
||||
#define SD_TYPE_MATCH (1)
|
||||
|
||||
#define EndGetM32(a) ((((a)[0])<<24)|(((a)[1])<<16)|(((a)[2])<<8)|((a)[3]))
|
||||
|
||||
-#define SD_GETBIT(var) do { \
|
||||
- if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } \
|
||||
- (var) = bb & 1; bb >>= 1; \
|
||||
-} while (0)
|
||||
+#define SD_GETBIT(var) do { if (!bits--) { s -= 4; if (s < src) return 0; bb=EndGetM32(s); bits=31; } (var) = bb & 1; bb >>= 1; } while (0)
|
||||
|
||||
-#define SD_GETBITS(var, nbits) do { \
|
||||
- bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } \
|
||||
-} while (0)
|
||||
+#define SD_GETBITS(var, nbits) do { bc=(nbits); (var)=0; while (bc--) {(var)<<=1; SD_GETBIT(bit); (var)|=bit; } } while (0)
|
||||
|
||||
#define SD_TYPE_LITERAL (0)
|
||||
#define SD_TYPE_MATCH (1)
|
||||
|
Loading…
Reference in New Issue
Block a user