mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Fix some vegas games not booting
This commit is contained in:
parent
696a4cf673
commit
e32a6208ae
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ float4 ColorCombine(float4 c_other, float4 c_local, Combine_Struct ctrl, float m
|
|||
dst *= blendFactor;
|
||||
|
||||
// truncate TODO: check this
|
||||
dst = floor(dst * 255.0f) / 255.0f;
|
||||
dst = floor(dst * 512.0f) / 512.0f;
|
||||
|
||||
switch (ctrl.c_add_aclocal) {
|
||||
case 0:
|
||||
|
|
Loading…
Reference in a new issue