mirror of
https://github.com/n64decomp/sm64
synced 2026-08-15 12:38:59 -04:00
init
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
FILE *f = fopen(argv[1], "r+");
|
||||
fseek(f, 0x24, SEEK_SET);
|
||||
char byte = 0x10;
|
||||
fwrite(&byte, sizeof(char), 1, f);
|
||||
fclose(f);
|
||||
}
|
||||
Reference in New Issue
Block a user