aboutsummaryrefslogtreecommitdiffstats
path: root/src/attack.cpp
diff options
context:
space:
mode:
authortcsullivan <tullivan99@gmail.com>2018-12-31 18:00:17 -0500
committertcsullivan <tullivan99@gmail.com>2018-12-31 18:00:17 -0500
commit22bf0a105e18a0e4541de6f5742f2c8547791bbe (patch)
treef3339b1e2bde2f8991aec59ae9f8fadc6b88d5b9 /src/attack.cpp
parent3ef0e74749373d4cfa2a9f8cda9b536b77d8b4cd (diff)
changes
Diffstat (limited to 'src/attack.cpp')
-rw-r--r--src/attack.cpp4
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,