diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-17 20:49:03 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-17 20:49:03 +0000 |
| commit | 77465c2629ef63629d69c97a0af60a47a07ce7f5 (patch) | |
| tree | 3d361898d0f29f4b789e52682e0945c741df6cb0 /src/client/panel.c | |
| parent | b6af4e925f4cf9dd284728e846b99e1de776ec31 (diff) | |
- opravena chyba, tux mophol pomocou bombballu vybuchnuteho v objekte do ktoreho sa dostal ako duch pridavat itemy
- kod namiesto SDL_Surface pouziva moj typ image_t
git-svn-id: http://opensvn.csie.org/tuxanci_ng@154 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/client/panel.c')
| -rw-r--r-- | src/client/panel.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/panel.c b/src/client/panel.c index 7a5b3e2..f63e481 100644 --- a/src/client/panel.c +++ b/src/client/panel.c @@ -12,10 +12,10 @@ #include "font.h" #include "chat.h" -static SDL_Surface *g_panel; -static SDL_Surface *g_shot; -static SDL_Surface *g_icon[ITEM_COUNT]; -static SDL_Surface *g_bonus; +static image_t *g_panel; +static image_t *g_shot; +static image_t *g_icon[ITEM_COUNT]; +static image_t *g_bonus; static bool_t isPanelInit = FALSE; |