1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00
* minor bugfixes
This commit is contained in:
Michał W. Urbańczyk
2007-10-21 18:41:58 +00:00
parent 16642621db
commit 0291bf2d2d
4 changed files with 61 additions and 10 deletions

View File

@@ -124,7 +124,8 @@ class CMinimap
: public ClickableL, public ClickableR, public Hoverable, public MotionInterested, public virtual CIntObject
{
public:
CDefHandler * radar; //radar.def; TODO: radars for maps with custom dimensions
SDL_Surface * radar; //radar.def; TODO: radars for maps with custom dimensions
SDL_Surface * temps;
std::map<int,SDL_Color> colors;
std::map<int,SDL_Color> colorsBlocked;
std::vector<SDL_Surface *> map; //one bitmap for each level
@@ -205,7 +206,7 @@ public:
bool scrollingRight ;
bool scrollingUp ;
bool scrollingDown ;
bool updateScreen ;
bool updateScreen, updateMinimap ;
unsigned char anim, animValHitCount; //animation frame
CMinimap minimap;