The credits file now also has underscores, which need to be escaped in LaTeX.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13431 a1c6a512-1295-4272-9138-f99709370657
diff --git a/manual/credits.pl b/manual/credits.pl
index fc4f40e..e231c71 100644
--- a/manual/credits.pl
+++ b/manual/credits.pl
@@ -8,7 +8,8 @@
 #
 while (<STDIN>) {
     if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
-        print "\\Forward{}\~$1\n";
+        s/\_/\\\_/g;
+        print "\\Forward{}\~$_";
     }
 }