Fixed compilation issues

This commit is contained in:
xawotihs
2013-11-26 06:07:23 +01:00
parent ac54bf32d3
commit 294c396417
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -301,7 +301,7 @@ void SdlApp::OnMouseDoubleClicked(const SDL_MouseButtonEvent& event)
#if (defined ANDROID) || (defined IOS) #if (defined ANDROID) || (defined IOS)
if(event.button == SDL_BUTTON_LEFT) /* Left button */ if(event.button == SDL_BUTTON_LEFT) /* Left button */
{ {
g_engine->HoldKey_NoRepeat(JGE_BTN_OK); m_Wagic.doOK();
} }
#endif #endif
} }
+2 -2
View File
@@ -287,8 +287,8 @@ void StatsWrapper::initValues()
countCreatures = countSpells = countInstants = countEnchantments = countSorceries = countArtifacts = 0; countCreatures = countSpells = countInstants = countEnchantments = countSorceries = countArtifacts = 0;
//this works only with 0.0f on floats //this works only with 0.0f on floats
memset(noLandsProbInTurn, 0.0f, sizeof(float) * Constants::STATS_FOR_TURNS); memset(noLandsProbInTurn, (int)0.0f, sizeof(float) * Constants::STATS_FOR_TURNS);
memset(noCreaturesProbInTurn, 0.0f, sizeof(float) * Constants::STATS_FOR_TURNS); memset(noCreaturesProbInTurn, (int)0.0f, sizeof(float) * Constants::STATS_FOR_TURNS);
memset(countCardsPerCost, 0, sizeof(int) * (Constants::STATS_MAX_MANA_COST + 1)); memset(countCardsPerCost, 0, sizeof(int) * (Constants::STATS_MAX_MANA_COST + 1));
memset(countCreaturesPerCost, 0, sizeof(int) * (Constants::STATS_MAX_MANA_COST + 1)); memset(countCreaturesPerCost, 0, sizeof(int) * (Constants::STATS_MAX_MANA_COST + 1));