diff options
| author | Johannes Schickel | 2006-05-29 14:00:00 +0000 |
|---|---|---|
| committer | Johannes Schickel | 2006-05-29 14:00:00 +0000 |
| commit | 0a557cf2a47038ea290fd13b3d64e7ce887c484c (patch) | |
| tree | 852ec18d7b84b5bef279176563d4346d0a7e60b1 /gui/launcher.cpp | |
| parent | af25e65c31cf01026ba8baf84ab01595b16b1ddd (diff) | |
| download | scummvm-rg350-0a557cf2a47038ea290fd13b3d64e7ce887c484c.tar.gz scummvm-rg350-0a557cf2a47038ea290fd13b3d64e7ce887c484c.tar.bz2 scummvm-rg350-0a557cf2a47038ea290fd13b3d64e7ce887c484c.zip | |
- changes transparency parameter of Theme::drawSurface to alpha parameter.
- adds possibility to draw GraphicsWidgets with alpha values.
svn-id: r22738
Diffstat (limited to 'gui/launcher.cpp')
| -rw-r--r-- | gui/launcher.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index a68a514b05..11896f9a09 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -452,7 +452,6 @@ LauncherDialog::LauncherDialog() if (g_gui.evaluator()->getVar("launcher_logo.visible") == 1) { _logo = new GraphicsWidget(this, "launcher_logo"); ThemeNew *th = (ThemeNew *)g_gui.theme(); - _logo->useTransparency(true); _logo->setGfx(th->getImageSurface(th->kThemeLogo)); @@ -782,7 +781,6 @@ void LauncherDialog::handleScreenChanged() { if (!_logo) _logo = new GraphicsWidget(this, "launcher_logo"); ThemeNew *th = (ThemeNew *)g_gui.theme(); - _logo->useTransparency(true); _logo->setGfx(th->getImageSurface(th->kThemeLogo)); } else { |
