Good news: WEEE IT WORKS
Bad news: There are errors in the unofficial build (beta 4) concerning with #defines. Apparently, after...
#define MAX_CHARACTERS 2
...
...
struct Character
{ ... }
Character mastercharacter[MAX_CHARACTERS];
...
...
void ClearCharacter(int ind)
{...
mastercharacter[ind].name = ""; //This here apparently produces an error that states "Expecting '.' but got '['
...}
//And after commenting that out, later I have
...
int i;
for(i = 0; i < MAX_CHARACTERS; i++) //ERROR: Could not resolve identifier MAX_CHARACTERS
I have gone over my VC aplenty, and the thing compiles successfully on the last official build I keep for these dark moments.
I probably wouldn't say anything, but since the source is being merged into the main trunk, I just want to you to wary of these things.
I'll be seeing if beta 3 has the same error. I would compile the SVN myself, but I use Dev-CPP, and am too lazy to port the VisualC Project to it.
EDIT: Beta 3 works fine