diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-03 08:49:01 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-03 08:49:01 -0400 |
commit | afb0ada00a2c50ea541ba6dc93058ccdb0286cdd (patch) | |
tree | 36b070d21fd237419a9f0a3bafb11add8fd68aa7 /src/entities.cpp | |
parent | f102149e15ca1ac36cbb4e2627e5ce44f2d5273a (diff) |
ortho snapping, reset option
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index 58c1651..216d9ef 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -64,15 +64,8 @@ void randGetomName(Entity *e) names.close(); - switch(bufs[0]) { - default : - case 'm': - e->gender = MALE; - break; - case 'f': - e->gender = FEMALE; - break; - } + // gender is a binary construct + e->gender = (bufs[0] == 'm') ? MALE : FEMALE; strcpy(e->name, bufs + 1); @@ -343,7 +336,7 @@ void Entity::draw(void) glColor3ub(255, 105, 180); } else if (type == MOBT) { if (Mobp(this)->rider != nullptr) { - Mobp(this)->rider->loc.x = loc.x + width / 2; + Mobp(this)->rider->loc.x = loc.x + width * 0.25f; Mobp(this)->rider->loc.y = loc.y + height - game::HLINE; Mobp(this)->rider->vel.y = .12; } |