Compiling for RG351M successfully.

This commit is contained in:
2021-08-27 12:29:51 -07:00
parent c07edc8770
commit 23c0bdaba6
4 changed files with 9 additions and 4 deletions

View File

@ -45,6 +45,8 @@ assetbuffer_t * assetBufferOpen(char *assetName) {
strcat(joined, ASSET_PREFIX);//Add prefix
strcat(joined, assetName);//Add body
printf("Opening up %s\n", joined);
// Open the file pointer now.
FILE *fptr = fopen(joined, "rb");
free(joined);// Free the string we just created