minor change in LOGD call

This commit is contained in:
Daniel O'Brien 2013-11-17 00:13:53 +11:00
parent c7f38761ed
commit cd1c405894

View File

@ -381,8 +381,8 @@ short cPlayer::DeltaExperience(short a_Xp_delta)
m_LifetimeTotalXp += a_Xp_delta; m_LifetimeTotalXp += a_Xp_delta;
} }
LOGD("Player \"%s\" earnt %d experience, total is now: %d", LOGD("Player \"%s\" gained/lost %d experience, total is now: %d",
m_PlayerName.c_str(), a_Xp_delta, m_XpTotal); m_PlayerName.c_str(), a_Xp_delta, m_CurrentXp);
// Set experience to be updated // Set experience to be updated
m_bDirtyExperience = true; m_bDirtyExperience = true;