I've been writing too much qc lately, apparently.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4937 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
2d6952b84e
commit
845c0782cf
1 changed files with 2 additions and 2 deletions
|
@ -2724,9 +2724,9 @@ static void QCBUILTIN PF_cl_getcursormode (pubprogfuncs_t *prinst, struct global
|
|||
if (G_FLOAT(OFS_PARM0))
|
||||
G_FLOAT(OFS_RETURN) = Key_MouseShouldBeFree();
|
||||
else if (key_dest_absolutemouse & world->keydestmask)
|
||||
G_FLOAT(OFS_RETURN) = TRUE;
|
||||
G_FLOAT(OFS_RETURN) = true;
|
||||
else
|
||||
G_FLOAT(OFS_RETURN) = FALSE;
|
||||
G_FLOAT(OFS_RETURN) = false;
|
||||
}
|
||||
|
||||
//get the input commands, and stuff them into some globals.
|
||||
|
|
Loading…
Reference in a new issue