[Scummvm-cvs-logs] SF.net SVN: scummvm:[49111] tools/trunk
jvprat at users.sourceforge.net
jvprat at users.sourceforge.net
Thu May 20 02:09:01 CEST 2010
Revision: 49111
http://scummvm.svn.sourceforge.net/scummvm/?rev=49111&view=rev
Author: jvprat
Date: 2010-05-20 00:09:01 +0000 (Thu, 20 May 2010)
Log Message:
-----------
Tools: Remove extract_t7g_mac, which is no longer required after clone2727 adapted Groovie to use MacResManager.
Modified Paths:
--------------
tools/trunk/Makefile.common
tools/trunk/README
tools/trunk/dist/msvc9/toolscli.vcproj
tools/trunk/dist/msvc9/toolsgui.vcproj
tools/trunk/tools.cpp
Removed Paths:
-------------
tools/trunk/engines/groovie/
Modified: tools/trunk/Makefile.common
===================================================================
--- tools/trunk/Makefile.common 2010-05-19 23:29:27 UTC (rev 49110)
+++ tools/trunk/Makefile.common 2010-05-20 00:09:01 UTC (rev 49111)
@@ -218,7 +218,6 @@
engines/scumm/extract_mm_nes.o \
engines/parallaction/extract_parallaction.o \
engines/scumm/extract_scumm_mac.o \
- engines/groovie/extract_t7g_mac.o \
engines/scumm/extract_zak_c64.o \
engines/kyra/kyra_pak.o \
engines/kyra/kyra_ins.o \
Modified: tools/trunk/README
===================================================================
--- tools/trunk/README 2010-05-19 23:29:27 UTC (rev 49110)
+++ tools/trunk/README 2010-05-20 00:09:01 UTC (rev 49111)
@@ -128,12 +128,6 @@
Example of usage:
./scummvm-tools-cli --tool extract_scumm_mac [-o outputdir] <infile>
- extract_t7g_mac
- Extract data files from the The 7th Guest Macintosh data file.
-
- Example of usage:
- ./scummvm-tools-cli --tool extract_t7g_mac [-o outputdir] <infile>
-
extract_zak_c64
Extracts data files from the Commodore 64 version of Zak
McKracken.
Modified: tools/trunk/dist/msvc9/toolscli.vcproj
===================================================================
--- tools/trunk/dist/msvc9/toolscli.vcproj 2010-05-19 23:29:27 UTC (rev 49110)
+++ tools/trunk/dist/msvc9/toolscli.vcproj 2010-05-20 00:09:01 UTC (rev 49111)
@@ -384,14 +384,6 @@
>
</File>
<File
- RelativePath="..\..\engines\groovie\extract_t7g_mac.cpp"
- >
- </File>
- <File
- RelativePath="..\..\engines\groovie\extract_t7g_mac.h"
- >
- </File>
- <File
RelativePath="..\..\engines\scumm\extract_zak_c64.cpp"
>
</File>
Modified: tools/trunk/dist/msvc9/toolsgui.vcproj
===================================================================
--- tools/trunk/dist/msvc9/toolsgui.vcproj 2010-05-19 23:29:27 UTC (rev 49110)
+++ tools/trunk/dist/msvc9/toolsgui.vcproj 2010-05-20 00:09:01 UTC (rev 49111)
@@ -528,14 +528,6 @@
>
</File>
<File
- RelativePath="..\..\extract_t7g_mac.cpp"
- >
- </File>
- <File
- RelativePath="..\..\extract_t7g_mac.h"
- >
- </File>
- <File
RelativePath="..\..\extract_zak_c64.cpp"
>
</File>
Modified: tools/trunk/tools.cpp
===================================================================
--- tools/trunk/tools.cpp 2010-05-19 23:29:27 UTC (rev 49110)
+++ tools/trunk/tools.cpp 2010-05-20 00:09:01 UTC (rev 49111)
@@ -55,7 +55,6 @@
#include "engines/scumm/extract_mm_nes.h"
#include "engines/parallaction/extract_parallaction.h"
#include "engines/scumm/extract_scumm_mac.h"
-#include "engines/groovie/extract_t7g_mac.h"
#include "engines/scumm/extract_zak_c64.h"
Tools::Tools() {
@@ -90,7 +89,6 @@
_tools.push_back(new ExtractMMNes());
_tools.push_back(new ExtractParallaction());
_tools.push_back(new ExtractScummMac());
- _tools.push_back(new ExtractT7GMac());
_tools.push_back(new ExtractZakC64());
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list