mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-26 14:28:34 +00:00
Fix some double->float conversions.
This commit is contained in:
parent
71d8165a86
commit
e9cb629723
6 changed files with 19 additions and 19 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue