Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions xboo/XbooLoad/src/XbooLoad.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ void LoadPic(void) {
//---------------------------------------------------------------------------------
int handle = dfopen("data\\splash.pcx","rb");

if (handle == -1) {
dprintf("Failed to open data\\splash.pcx");
return;
}

dfseek(handle,0,SEEK_END);
u32 size = dftell(handle);
dprintf("File size is %d\n",size);
Expand Down