refactoring

This commit is contained in:
tTh
2023-03-21 20:31:50 +01:00
parent 9cbbb35cde
commit f4d5557b4f
8 changed files with 61 additions and 22 deletions

View File

@@ -18,10 +18,10 @@ if (2 != argc) {
exit(0);
}
verbosity = 2;
verbosity = 1;
foo = try_to_read_an_OBJ_file(argv[1], "bulles.xyz", 0);
fprintf(stderr, "try to read -> %d\n", foo);
fprintf(stderr, "try to read '%s' --> %d\n", argv[1], foo);
return 0;
}