mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-27 14:32:15 +00:00
Warningfix
This commit is contained in:
parent
b0468049ce
commit
c7e6995955
1 changed files with 9 additions and 1 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.19 2002/04/30 12:23:35 jbravo
|
||||||
|
// Warningfix
|
||||||
|
//
|
||||||
// Revision 1.18 2002/04/30 11:54:37 makro
|
// Revision 1.18 2002/04/30 11:54:37 makro
|
||||||
// Bots rule ! Also, added clips to give all. Maybe some other things
|
// Bots rule ! Also, added clips to give all. Maybe some other things
|
||||||
//
|
//
|
||||||
|
@ -227,7 +230,7 @@ void SP_team_neutralobelisk( gentity_t *ent );
|
||||||
|
|
||||||
// JBravo: SP_item_botroam doesnt really exsist.
|
// JBravo: SP_item_botroam doesnt really exsist.
|
||||||
// Makro - still, bots are supposed to use these
|
// Makro - still, bots are supposed to use these
|
||||||
void SP_item_botroam( gentity_t *ent ) {};
|
void SP_item_botroam( gentity_t *ent );
|
||||||
//Blaze: merged func_explosive into func_breakable
|
//Blaze: merged func_explosive into func_breakable
|
||||||
|
|
||||||
// JBravo: adding explosive
|
// JBravo: adding explosive
|
||||||
|
@ -316,6 +319,11 @@ spawn_t spawns[] = {
|
||||||
{0, 0}
|
{0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// JBravo: Compiler warning shutup
|
||||||
|
void SP_item_botroam (gentity_t *ent) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
===============
|
===============
|
||||||
G_CallSpawn
|
G_CallSpawn
|
||||||
|
|
Loading…
Reference in a new issue