This commit is contained in:
MarcEricMartel
2023-11-27 13:11:24 -05:00
parent c24123362a
commit 9a7d25c1d9
3 changed files with 30 additions and 7 deletions

View File

@@ -871,7 +871,7 @@ void Engine::DisplayInfo(float elapsedTime, BlockType bloc) {
fPosY = fPosYJump;
fPosY -= charSize;
ss << " Velocity : " << m_otherplayerpos;
ss << " Velocity : " << m_player.GetVelocity();
PrintText(fPosX, fPosY, ss.str());
ss.str("");
fPosY -= charSize;
@@ -881,7 +881,7 @@ void Engine::DisplayInfo(float elapsedTime, BlockType bloc) {
ss.str("");
fPosY -= charSize;
ss << " Remote Position : " << m_remotePlayer.GetPosition();//m_player.GetPosition();
ss << " Remote Position : " << m_otherplayerpos;
PrintText(fPosX, fPosY, ss.str());
ss.str("");
fPosY -= charSize;