diff options
author | tcsullivan <tullivan99@gmail.com> | 2018-12-31 18:00:17 -0500 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2018-12-31 18:00:17 -0500 |
commit | 22bf0a105e18a0e4541de6f5742f2c8547791bbe (patch) | |
tree | f3339b1e2bde2f8991aec59ae9f8fadc6b88d5b9 /src/attack.cpp | |
parent | 3ef0e74749373d4cfa2a9f8cda9b536b77d8b4cd (diff) |
changes
Diffstat (limited to 'src/attack.cpp')
-rw-r--r-- | src/attack.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attack.cpp b/src/attack.cpp index 41fb77c..fe32dad 100644 --- a/src/attack.cpp +++ b/src/attack.cpp @@ -54,7 +54,7 @@ namespace lua { auto h = entity->component<Health>(); h->health -= d; if (h->ouch != nullptr) - Mix_PlayChannel(0, h->ouch, 0); + Mix_PlayChannel(1, h->ouch, 0); return 0; } } @@ -140,7 +140,7 @@ void AttackSystem::render(void) Render::worldShader.enable(); for (auto& ae : effects) { ae.effect(ae.counter / RATE); // bind current frame - auto dim = ae.effect.getTextureDim(); + auto dim = ae.effect.getTextureDim() * game::HLINE; auto s = ae.pos - (dim / 2); GLfloat verts[] = { s.x, s.y, z, 0, 0, |