Fixed man page.

This commit is contained in:
leo
2013-01-06 15:33:37 +00:00
parent 49be422b02
commit 31c8d6b977
3 changed files with 3 additions and 14 deletions
+2 -2
View File
@@ -4,7 +4,7 @@
.SH NAME
LeoCAD \- CAD program using plastic bricks.
.SH SYNOPSIS
\fIleocad \fR[\fI infile \fR[ -i \fR[\fI outfile.ext \fR]\fI \fR[\fI-w x\fR]\fI \fR[\fI-h y\fR] ] \fR] [\fI\-l path\fR]
\fIleocad \fR[\fI infile \fR[ \-i \fR[\fI outfile.ext \fR]\fI \fR[\fI\-w x\fR]\fI \fR[\fI\-h y\fR] ] \fR] [\fI\-l path\fR]
.SH "DESCRIPTION"
This manual page documents briefly the \fILeoCAD \fRprogram.
It was written for the Debian GNU/Linux distribution
@@ -100,7 +100,7 @@ The default library names searched are libGL.so and libMesaGL.so.
.SH EXAMPLES
.PP
$ leocad car.lcd -i car.png -w 640 -h 480
$ leocad car.lcd \-i car.png \-w 640 \-h 480
.PP
This will start LeoCAD, load the file "car.lcd," create a png called
"car.png" with a resolution of 640x480 and exit when done.
-11
View File
@@ -1,11 +0,0 @@
all:
$(MAKE) -C .. $@
clean:
$(MAKE) -C .. $@
veryclean:
$(MAKE) -C .. $@
.PHONY: all clean veryclean
+1 -1
View File
@@ -135,7 +135,7 @@ void Sys_GetFileList(const char* Path, ObjArray<String>& FileList)
DIR* Dir = opendir(DirPath);
if (!Dir)
{
printf("Couldn't open directory.\n");
printf("Couldn't open directory %s.\n", DirPath);
return;
}