mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@312 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6b635120d4
commit
047524688f
11 changed files with 446 additions and 446 deletions
|
@ -30,7 +30,7 @@ source:
|
||||||
find . -name "*.mine" -exec rm -rf '{}' ';';
|
find . -name "*.mine" -exec rm -rf '{}' ';';
|
||||||
find . -name "*.c.r*" -exec rm -rf '{}' ';';
|
find . -name "*.c.r*" -exec rm -rf '{}' ';';
|
||||||
find . -name "*.h.r*" -exec rm -rf '{}' ';';
|
find . -name "*.h.r*" -exec rm -rf '{}' ';';
|
||||||
cp -R src rsrc include devcpp watcomhax testgame $(sourcedir)
|
cp -R src rsrc include devcpp testgame $(sourcedir)
|
||||||
find $(sourcedir) | grep -i svn | xargs rm -rf
|
find $(sourcedir) | grep -i svn | xargs rm -rf
|
||||||
rm -f $(sourcedir)/src/tmp/*
|
rm -f $(sourcedir)/src/tmp/*
|
||||||
touch $(sourcedir)/src/tmp/keep.me
|
touch $(sourcedir)/src/tmp/keep.me
|
||||||
|
|
|
@ -32,7 +32,7 @@ source:
|
||||||
find . -name "*.mine" -exec rm -rf '{}' ';';
|
find . -name "*.mine" -exec rm -rf '{}' ';';
|
||||||
find . -name "*.c.r*" -exec rm -rf '{}' ';';
|
find . -name "*.c.r*" -exec rm -rf '{}' ';';
|
||||||
find . -name "*.h.r*" -exec rm -rf '{}' ';';
|
find . -name "*.h.r*" -exec rm -rf '{}' ';';
|
||||||
cp -R source rsrc watcomhax $(sourcedir)
|
cp -R source rsrc $(sourcedir)
|
||||||
find $(sourcedir) | grep -i svn | xargs rm -rf
|
find $(sourcedir) | grep -i svn | xargs rm -rf
|
||||||
kzip -r $(sourcedir).zip $(sourcedir)
|
kzip -r $(sourcedir).zip $(sourcedir)
|
||||||
|
|
||||||
|
|
|
@ -2643,7 +2643,7 @@ void moveweapons(void)
|
||||||
|
|
||||||
hittype[j].owner = s->owner;
|
hittype[j].owner = s->owner;
|
||||||
hittype[j].picnum = s->picnum;
|
hittype[j].picnum = s->picnum;
|
||||||
hittype[j].extra = thisprojectile[i].extra;
|
hittype[j].extra += thisprojectile[i].extra;
|
||||||
|
|
||||||
if (thisprojectile[i].spawns >= 0 )
|
if (thisprojectile[i].spawns >= 0 )
|
||||||
{
|
{
|
||||||
|
|
|
@ -3761,11 +3761,11 @@ char parse(void)
|
||||||
|
|
||||||
case CON_AI:
|
case CON_AI:
|
||||||
insptr++;
|
insptr++;
|
||||||
g_t[5] = *insptr++;
|
g_t[5] = *insptr++; // Ai
|
||||||
g_t[4] = *(long *)(g_t[5]); // Action
|
g_t[4] = *(long *)(g_t[5]); // Action
|
||||||
g_t[1] = *(long *)(g_t[5]+4); // move
|
g_t[1] = *(long *)(g_t[5]+4); // move
|
||||||
g_sp->hitag = *(long *)(g_t[5]+8); // Ai
|
g_sp->hitag = *(long *)(g_t[5]+8); // move flags
|
||||||
g_t[0] = g_t[2] = g_t[3] = 0;
|
g_t[0] = g_t[2] = g_t[3] = 0; // count, actioncount... g_t[3] = ???
|
||||||
if(g_sp->hitag&random_angle)
|
if(g_sp->hitag&random_angle)
|
||||||
g_sp->ang = TRAND&2047;
|
g_sp->ang = TRAND&2047;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue