Morph
Member
I tried to mess around with my source code once again. So I updated my checkout of the MORPH branch, opened the project via Srb2.dev and compiled. Before the process was almost finished an error message popped up:
"comptime.h: No such file or directory"
The file is indeed not located inside the src folder but referenced inside the comptime.c file:
This piece of code is new to me and was only added to the srb2 branches but not the original sourcecode. I am sure it serves a purpose but since I don't know which, since the changes were made during my absence and since there is no comptime.h file I am quite confused what to do...
:|
"comptime.h: No such file or directory"
The file is indeed not located inside the src folder but referenced inside the comptime.c file:
Code:
#ifdef COMPVERSION
#include "comptime.h"
#else
const char *comprevision = "Unknown";
#endif
:|