Hello all,
I’m working on the ET Dutch project now and instead of replacing all text everywhere i wanted to make a single file. But when i have this:
language.c
const char* Test1 = "CombatErvaring";
and use it here:
bg_misc.c
const char* skillNames[SK_NUM_SKILLS] = {
Test1,
"Engineering",
"First Aid",
"Signals",
"Light Weapons",
"Heavy Weapons",
"Covert Ops"
};
I get the message:
1>*\src\game\bg_misc.c(204) : error C2099: initializer is not a constant
What am i doing wrong 

