Adds skill icons for the two mage skills
This commit is contained in:
parent
18effa2416
commit
81e7df1920
|
@ -176,10 +176,8 @@ if (MINGW)
|
|||
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -DMINGW")
|
||||
endif (MINGW)
|
||||
|
||||
if (NOT MSVC AND NOT NINJA)
|
||||
if (NOT MSVC)
|
||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D__FNAME__='\"$(subst ${CMAKE_SOURCE_DIR}/,,$(abspath $<))\"'")
|
||||
elseif (NINJA)
|
||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D__FNAME__='\"$$(subst ${CMAKE_SOURCE_DIR}/,,$$(abspath $$<))\"'")
|
||||
else ()
|
||||
set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -D__FNAME__=__FILE__")
|
||||
endif ()
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
@ -850,7 +850,7 @@ create_blink(void)
|
|||
Sprite *s = sprite_create();
|
||||
sprite_set_texture(s, t, 0);
|
||||
s->dim = GAME_DIMENSION;
|
||||
s->clip = CLIP32(32, 0);
|
||||
s->clip = CLIP32(64, 64);
|
||||
s->fixed = true;
|
||||
Skill *skill = create_default("Blink", s);
|
||||
skill->levelcap = 3;
|
||||
|
@ -900,7 +900,7 @@ create_erupt(void)
|
|||
Sprite *s = sprite_create();
|
||||
sprite_set_texture(s, t, 0);
|
||||
s->dim = GAME_DIMENSION;
|
||||
s->clip = CLIP32(32, 0);
|
||||
s->clip = CLIP32(32, 64);
|
||||
s->fixed = true;
|
||||
Skill *skill = create_default("Erupt", s);
|
||||
skill->levelcap = 3;
|
||||
|
|
Loading…
Reference in New Issue