aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-10-15 09:07:06 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-10-15 09:07:06 -0400
commit5c2179bc9afa809fa3b915bea0d75f62f90f0644 (patch)
treebd7926369bfc540ebf925d070e1102576292d9bf /src/ui.cpp
parent5adabb82443b9b10b25cdd8b4db3cfe890e36fa1 (diff)
quest fixes
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index fe5414c..8e80341 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -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;
}
}