mirror of https://github.com/n64decomp/mk64.git
Add some usage and build insturctions for the extractor
Signed-off-by: Taggerung <tyler.taggerung@email.com>
This commit is contained in:
parent
a8c37b7243
commit
4abffc3b2c
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue