All include files should be semicolon-correct now

This commit is contained in:
Scott Ehlert
2007-08-10 04:52:12 +00:00
parent 62c41fbd03
commit e6663991a7
31 changed files with 435 additions and 443 deletions

View File

@@ -23,9 +23,9 @@ native translate(const string[], destid=-1, forcelang=-1);
stock _T(const string[], destid=-1, forcelang=-1)
{
new TranslationResult[2] = {0, 0}
TranslationResult[0] = translate(string, destid, forcelang)
return TranslationResult
new TranslationResult[2] = {0, 0};
TranslationResult[0] = translate(string, destid, forcelang);
return TranslationResult;
}
stock load_translations(const file[])