diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-07 07:39:47 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-07 07:39:47 -0400 |
commit | 5e4b825513aee44afc1342e5c390e80d3a1fdd15 (patch) | |
tree | 0e7f7205ae38f5cc4be509b44f5f5a4f64fe5d3c | |
parent | f4632d58014dce0edc2d447dc934bae9cf957439 (diff) | |
parent | aa9f53090bc0bd3421bf84930a9dc6b2223033f9 (diff) |
merge fix
-rw-r--r-- | brice.dat | 6 | ||||
-rw-r--r-- | main.cpp | 6 | ||||
-rw-r--r-- | src/ui.cpp | 2 | ||||
-rw-r--r-- | src/ui_action.cpp | 2 | ||||
-rw-r--r-- | src/world.cpp | 14 | ||||
-rwxr-xr-x | win32/main.exe | bin | 6027539 -> 6226815 bytes |
6 files changed, 16 insertions, 14 deletions
@@ -1,5 +1,5 @@ 2 -canSprint -1 canJump -1 +0 +canSprint +0 @@ -295,8 +295,10 @@ int main(int argc, char *argv[]){ } }).detach(); - while (gameRunning) + while (gameRunning) { render(); + ui::handleEvents(); + } // put away the brice for later game::briceSave(); @@ -327,7 +329,7 @@ void mainLoop(void){ return; } else { // handle keypresses - currentWorld could change here - ui::handleEvents(); + //ui::handleEvents(); if (game::time::tickHasPassed()) logic(); @@ -1152,7 +1152,7 @@ EXIT: toggleBlackFast(); player->canMove = true; }; - + while(SDL_PollEvent(&e)) { switch(e.type) { diff --git a/src/ui_action.cpp b/src/ui_action.cpp index ebdc705..9029907 100644 --- a/src/ui_action.cpp +++ b/src/ui_action.cpp @@ -124,7 +124,7 @@ void actionAttack(void) ui::toggleWhiteFast(); } } else { - ui::dialogBox(player->name, "", false, "%s doesn't appear to be in the mood for fighting...", m->name); + ui::dialogBox(player->name, "", false, "%s doesn't appear to be in the mood for fighting...", m->name.c_str()); } ACTION_EPILOUGE; diff --git a/src/world.cpp b/src/world.cpp index b096180..11bd671 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -718,7 +718,7 @@ void World::draw(Player *p) std::vector<GLfloat> partVec(pss); GLfloat *pIndex = &partVec[0]; - + for (const auto &p : particles) { pc += 30; if (pc > pss) { @@ -2193,15 +2193,15 @@ loadWorldFromXMLNoSave(std::string path) { vil = vil->NextSiblingElement(); } - std::ifstream dat ((_currentXML + ".dat").data()); - if (dat.good()) { - dat.close(); - tmp->load(); - } - if (!loadedLeft && !loadedRight) { currentXML = _currentXML; currentXMLRaw = _currentXMLRaw; + + std::ifstream dat ((_currentXML + ".dat").data()); + if (dat.good()) { + dat.close(); + tmp->load(); + } } else { delete _currentXMLDoc; } diff --git a/win32/main.exe b/win32/main.exe Binary files differindex f77663e..1e00343 100755 --- a/win32/main.exe +++ b/win32/main.exe |