misc fixes/tweaks/stuff intended to get the emscripten port working better.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4456 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
cf893a1921
commit
3b51dae2c9
21 changed files with 1303 additions and 135 deletions
|
@ -563,6 +563,9 @@ void TL_ParseLanguage (char *name, char *data, int num) //this is one of the fir
|
|||
|
||||
void TL_LoadLanguage (char *name, char *shortname, int num) //this is one of the first functions to be called.
|
||||
{
|
||||
#ifdef FTE_TARGET_WEB
|
||||
return;
|
||||
#else
|
||||
FILE *f;
|
||||
int size;
|
||||
char *buffer;
|
||||
|
@ -585,6 +588,7 @@ void TL_LoadLanguage (char *name, char *shortname, int num) //this is one of the
|
|||
|
||||
TL_ParseLanguage(name, buffer, num);
|
||||
free(buffer);
|
||||
#endif
|
||||
}
|
||||
#ifdef _DEBUG
|
||||
#define CONVERTDEFAULT
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue