snes: pcx_to_tiles_4bpp

forgot to actually add the command-line parsing code
This commit is contained in:
Vince Weaver 2013-01-21 13:17:00 -05:00
parent 8e77643bb4
commit 5d8a70dc96
1 changed files with 5 additions and 0 deletions

View File

@ -195,6 +195,11 @@ int main(int argc, char **argv) {
int result;
/* parse command line args */
if (argc>1) {
strncpy(label_prefix,argv[1],BUFSIZ);
}
/* read from stdin */
result=vmwLoadPCX(fileno(stdin));