Adds skill icons for the two mage skills

This commit is contained in:
Linus Probert 2019-05-09 21:06:06 +02:00
parent 18effa2416
commit 81e7df1920
3 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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;