diff options
author | Max Horn | 2002-12-13 23:34:07 +0000 |
---|---|---|
committer | Max Horn | 2002-12-13 23:34:07 +0000 |
commit | 837f33e31bf2e2980670aeb3b4c60470308c3a03 (patch) | |
tree | 65a53b5e159b283b9fba66598ef9312246787d5d | |
parent | e01ecb3a7fbfb8b1f465117472eb7c23d8403b7e (diff) | |
download | scummvm-rg350-837f33e31bf2e2980670aeb3b4c60470308c3a03.tar.gz scummvm-rg350-837f33e31bf2e2980670aeb3b4c60470308c3a03.tar.bz2 scummvm-rg350-837f33e31bf2e2980670aeb3b4c60470308c3a03.zip |
changed back transparency
svn-id: r5943
-rw-r--r-- | gui/newgui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index 8b191b2077..4b57bca753 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -317,7 +317,7 @@ void NewGui::line(int x, int y, int x2, int y2, int16 color) void NewGui::blendRect(int x, int y, int w, int h, int16 color) { - #define ALPHA_LEVEL 2 + #define ALPHA_LEVEL 3 uint8 r, g, b; uint8 ar, ag, ab; _system->colorToRBG(color, r, g, b); |