I removed exclib in favor of a errno style approach but now strncpy is segfaulting. I have no fucking idea.

This commit is contained in:
2024-12-23 23:25:53 -05:00
parent 1e0d22d4e1
commit a1a243b2b2
20 changed files with 1225 additions and 887 deletions

View File

@@ -1,7 +1,9 @@
#ifndef _ASSETS_H_
#define _ASSETS_H_
void load_frame_from_image(char *fname, GAME_frame *frame);
void load_start_bgm(char *fname);
#include "error.h"
ErrorContext *load_frame_from_image(char *fname, GAME_frame *frame);
ErrorContext *load_start_bgm(char *fname);
#endif //_ASSETS_H_