From aa0166a23cecfdaff5b74db27aec801828b65e63 Mon Sep 17 00:00:00 2001 From: divverent Date: Mon, 24 Aug 2009 09:49:15 +0000 Subject: [PATCH] fix typo git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9143 d7cf8633-e32d-0410-b094-e92efae38249 --- prvm_execprogram.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prvm_execprogram.h b/prvm_execprogram.h index 8f234f99..665bf542 100644 --- a/prvm_execprogram.h +++ b/prvm_execprogram.h @@ -82,10 +82,10 @@ OPC->_float = OPA->_float < OPB->_float; break; case OP_AND: - OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) && FLOAT_IS_TRUE_FOR_INT(OBA->_int); // TODO change this back to float, and add AND_I to be used by fteqcc for anything not a float + OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) && FLOAT_IS_TRUE_FOR_INT(OPA->_int); // TODO change this back to float, and add AND_I to be used by fteqcc for anything not a float break; case OP_OR: - OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) || FLOAT_IS_TRUE_FOR_INT(OBA->_int); // TODO change this back to float, and add OR_I to be used by fteqcc for anything not a float + OPC->_float = FLOAT_IS_TRUE_FOR_INT(OPA->_int) || FLOAT_IS_TRUE_FOR_INT(OPA->_int); // TODO change this back to float, and add OR_I to be used by fteqcc for anything not a float break; case OP_NOT_F: OPC->_float = !FLOAT_IS_TRUE_FOR_INT(OPA->_int); -- 2.39.2