diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-02-27 01:00:34 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-02-27 01:00:34 +0000 |
commit | e7af59e38e0b66db5adc4b40d213066b52cb47f2 (patch) | |
tree | dad9607deb4038b27ad510919d25263d632fea0e /src/gui/progressbar.h | |
parent | 500676abe3e03d63c192663db78d5d1f963c18f4 (diff) | |
download | mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.tar.gz mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.tar.bz2 mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.tar.xz mana-e7af59e38e0b66db5adc4b40d213066b52cb47f2.zip |
Now only using Image instances. No more SDL_Surface.
Diffstat (limited to 'src/gui/progressbar.h')
-rw-r--r-- | src/gui/progressbar.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gui/progressbar.h b/src/gui/progressbar.h index 81255b6e..5da046b7 100644 --- a/src/gui/progressbar.h +++ b/src/gui/progressbar.h @@ -94,9 +94,8 @@ class ProgressBar : public gcn::Widget { Image *dBackground; Image *dTopLeftBorder, *dTopRightBorder, *dBottomLeftBorder, *dBottomRightBorder; Image *dLeftBorder, *dRightBorder, *dTopBorder, *dBottomBorder; - #ifndef USE_OPENGL - SDL_Surface *ColorBar; - #endif + // Our color bar + Image *colorBar; }; #endif |