diff options
author | rodri <rgl@antares-labs.eu> | 2024-12-07 12:41:56 +0000 |
---|---|---|
committer | rodri <rgl@antares-labs.eu> | 2024-12-07 12:41:56 +0000 |
commit | ca481020694e576b3f5cce3e4d4e2cb1a71b360d (patch) | |
tree | 98af0c1319fbf9953c90ecf8f7dd8b57c8894ca2 | |
parent | 28cacde37de17e1f471b215e55d644b53881a24b (diff) | |
download | battleship-front.tar.gz battleship-front.tar.bz2 battleship-front.zip |
-rw-r--r-- | bts.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -647,11 +647,11 @@ initvfx(void) coverimg = readpngimage(aux); snprint(aux, sizeof aux, "%s/%s", assetdir, "vfx/hit.png"); - spritetab[VFXHit] = readpngsprite(aux, ZP, Rect(0, 0, 32, 32), 12, 100); + spritetab[VFXHit] = readpngsprite(aux, ZP, Rect(0, 0, 32, 32), 12, 60); snprint(aux, sizeof aux, "%s/%s", assetdir, "vfx/miss.png"); - spritetab[VFXMiss] = readpngsprite(aux, ZP, Rect(0, 0, 32, 32), 7, 150); + spritetab[VFXMiss] = readpngsprite(aux, ZP, Rect(0, 0, 32, 32), 7, 100); snprint(aux, sizeof aux, "%s/%s", assetdir, "vfx/shining.png"); - spritetab[VFXShine] = readpngsprite(aux, ZP, Rect(0, 0, 50, 50), 11, 100); + spritetab[VFXShine] = readpngsprite(aux, ZP, Rect(0, 0, 50, 50), 11, 50); initvfxq(&vfxqueue); } |