Skip to content

Commit

Permalink
Buildfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Oct 27, 2019
1 parent 714f83f commit bbbd7f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -68,6 +68,7 @@ build.ios
versionname.txt
versioncode.txt
build*/
android/.cxx

# Temp file used by jenkins windows build (TODO: remove)
desc.txt
Expand Down
2 changes: 1 addition & 1 deletion GPU/Software/Rasterizer.cpp
Expand Up @@ -1332,7 +1332,7 @@ static inline Vec4<int> ModulateRGBA(const Vec4<int>& prim_color, const Vec4<int
} else {
out_rgb = prim_color.rgb() * texcolor.rgb() / 255;
}
out_a = (rgba) ? (prim_color.a() * texcolor.a() / 255) : prim_color.a();
out_a = (prim_color.a() * texcolor.a() / 255);
#endif

return Vec4<int>(out_rgb.r(), out_rgb.g(), out_rgb.b(), out_a);
Expand Down

0 comments on commit bbbd7f8

Please sign in to comment.