Add forgotten string for function type values to GetC4VName

rope
Julius Michaelis 2012-04-14 16:53:35 +02:00
parent deec6a902a
commit 57a07a95ab
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ const char* GetC4VName(const C4V_Type Type)
return "def";
case C4V_Effect:
return "effect";
case C4V_Function:
return "function";
default:
return "!Fehler!";
}