Use correct type for thinktime
This commit is contained in:
parent
24923615b7
commit
f9c202f83e
1 changed files with 1 additions and 1 deletions
|
@ -1729,7 +1729,7 @@ Runs thinking code for this frame if necessary
|
||||||
=============
|
=============
|
||||||
*/
|
*/
|
||||||
void G_RunThink (gentity_t *ent) {
|
void G_RunThink (gentity_t *ent) {
|
||||||
float thinktime;
|
int thinktime;
|
||||||
|
|
||||||
thinktime = ent->nextthink;
|
thinktime = ent->nextthink;
|
||||||
if (thinktime <= 0) {
|
if (thinktime <= 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue