diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-12-04 09:20:36 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-12-04 09:20:36 -0500 |
commit | 58ed33ed617396b4b4780d5b419392ae65d20e08 (patch) | |
tree | 96cbe176144ee5f863fac6f9c4db544d722a296c /src/entities.cpp | |
parent | 4c6895ba1445a040f65affea6f29ab66011960db (diff) | |
parent | 5f0a1b99133a4f333f8be1466f1f5bf1245d6781 (diff) |
Fixed white outline around textures :)
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index b1a0c09..f812919 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -205,7 +205,7 @@ void Entity::draw(void){ //draws the entities if(type == PLAYERT){ static int texState = 0; static bool up = true; - if(loops % (int)((float)5 / (float)speed) == 0){ + if(loops % (int)((float)2 / (float)speed) == 0){ if(up){ texState+=1; if(texState==2)up=false; |