Add some usage and build insturctions for the extractor

Signed-off-by: Taggerung <tyler.taggerung@email.com>
This commit is contained in:
Taggerung 2023-10-05 21:30:01 -04:00
parent a8c37b7243
commit 4abffc3b2c
1 changed files with 7 additions and 1 deletions

View File

@ -534,7 +534,13 @@ inline short bswap(short in) {
return ((in & 0xFF) << 8) | ((in >> 8) & 0xFF);
}
// argv[1] -> path to baserom file
/**
* Usage:
* vtx_extract /path/to/baserom.us.z64
*
* How to build:
* make -C tools -f vtx_extract.mk
**/
int main(int argc, char **argv) {
int err;
int num_tris;