summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/update/.cvsignore4
-rwxr-xr-xtools/update/update.cpp3
2 files changed, 6 insertions, 1 deletions
diff --git a/tools/update/.cvsignore b/tools/update/.cvsignore
new file mode 100755
index 0000000..a07b458
--- /dev/null
+++ b/tools/update/.cvsignore
@@ -0,0 +1,4 @@
+Release
+Debug
+*.ncb
+*.opt
diff --git a/tools/update/update.cpp b/tools/update/update.cpp
index e933945..ee20076 100755
--- a/tools/update/update.cpp
+++ b/tools/update/update.cpp
@@ -208,6 +208,7 @@ int main(int argc, char* argv[])
if (update != 0)
{
message(&txt, "%s (%s) updated ", oldinfo[i].name, oldinfo[i].description);
+ strcpy (str, "");
if (update & UPDATE_DESCRIPTION)
{
strcat(str, "description");
@@ -236,7 +237,7 @@ int main(int argc, char* argv[])
free(newbuf);
}
- message(&txt, "\n");
+ message(&txt, "%s\n", str);
}
}
}