diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-15 09:07:06 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-10-15 09:07:06 -0400 |
commit | 5c2179bc9afa809fa3b915bea0d75f62f90f0644 (patch) | |
tree | bd7926369bfc540ebf925d070e1102576292d9bf /src/ui.cpp | |
parent | 5adabb82443b9b10b25cdd8b4db3cfe890e36fa1 (diff) |
quest fixes
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -8,6 +8,8 @@ extern Player *player; // 'player' should be (must be) defined in main.cpp extern World *currentWorld; // should/must also be defined in main.cpp +extern std::vector<NPC>npc; + static FT_Library ftl; // Variables for the FreeType library and stuff static FT_Face ftf; static GLuint ftex; @@ -84,7 +86,7 @@ namespace ui { h=ftf->glyph->bitmap.rows; glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D,ftex); - switch(c){ + switch(c){ // Some characters are not properly spaced, make them so here case '^': case '*': case '`': @@ -242,5 +244,13 @@ namespace ui { break; } } + static bool once=false; + unsigned int i; + if(!dialogBoxExists&&!once){ + for(i=0;i<npc.size();i++){ + npc[i].flushAIFunc(); + } + once=true; + }else once=false; } } |