Fix some double->float conversions.

This commit is contained in:
Rachel Bryk 2014-11-09 15:02:18 -05:00
parent 71d8165a86
commit e9cb629723
6 changed files with 19 additions and 19 deletions

View file

@ -317,7 +317,7 @@ public:
switch (op)
{
case TOK_NOT:
return 1.0f - value;
return 1.0 - value;
default:
assert(false);
return 0;
@ -329,7 +329,7 @@ public:
switch (op)
{
case TOK_NOT:
inner->SetValue(1.0f - value);
inner->SetValue(1.0 - value);
default:
assert(false);
}