[Scummvm-cvs-logs] scummvm-tools master -> 81ca63220c0bddd10f7d0c573de2d390ffb37ae7

criezy criezy at scummvm.org
Tue Nov 8 21:21:34 CET 2011


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

Summary:
d216c154dc TOOLS: Add missing EOL in some compress_cge error messages
81ca63220c GIT: Ignore compress_cge executable


Commit: d216c154dc491d5774ea94caa4d35da2f5ca5c72
    https://github.com/scummvm/scummvm-tools/commit/d216c154dc491d5774ea94caa4d35da2f5ca5c72
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2011-11-08T12:18:15-08:00

Commit Message:
TOOLS: Add missing EOL in some compress_cge error messages

Changed paths:
    engines/cge/compress_cge.cpp



diff --git a/engines/cge/compress_cge.cpp b/engines/cge/compress_cge.cpp
index 11938dc..782c8d9 100644
--- a/engines/cge/compress_cge.cpp
+++ b/engines/cge/compress_cge.cpp
@@ -132,11 +132,11 @@ static void pack() {
 
 	// Open vol cat and dat files for writing
 	if ((volCat = fopen("vol.cat", "wb")) == NULL) {
-		printf("FATAL: Unable to create vol.cat");
+		printf("FATAL: Unable to create vol.cat\n");
 		exit(0);
 	}
 	if ((volDat = fopen("vol.dat", "wb")) == NULL) {
-		printf("FATAL: Unable to create vol.dat");
+		printf("FATAL: Unable to create vol.dat\n");
 		exit(0);
 	}
 
@@ -184,7 +184,7 @@ static void pack() {
 			// Open the file and get the size
 			fIn = fopen(fname, "rb");
 			if (!fIn) {
-				printf("FATAL: Error opening %s", fname);
+				printf("FATAL: Error opening %s\n", fname);
 				exit(-1);
 			}
 			fseek(fIn, 0, SEEK_END);


Commit: 81ca63220c0bddd10f7d0c573de2d390ffb37ae7
    https://github.com/scummvm/scummvm-tools/commit/81ca63220c0bddd10f7d0c573de2d390ffb37ae7
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2011-11-08T12:21:12-08:00

Commit Message:
GIT: Ignore compress_cge executable

Changed paths:
    .gitignore



diff --git a/.gitignore b/.gitignore
index 3c1dd12..536d0ff 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@
 *.swo
 
 /.gdb_history
+/compress_cge
 /construct_mohawk
 /create_sjisfnt
 /decine






More information about the Scummvm-git-logs mailing list