1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 16:06:44 +00:00

removed some cout spam

This commit is contained in:
Marc Zinnschlag 2012-03-20 10:15:22 +01:00
parent aca274cbca
commit 6a0474a977
2 changed files with 58 additions and 65 deletions

View file

@ -742,7 +742,7 @@ namespace MWDialogue
} }
} }
} }
std::cout << std::endl << std::endl;
updateTopics(); updateTopics();
} }

View file

@ -57,8 +57,6 @@ void MessageBoxManager::onFrame (float frameDuration)
void MessageBoxManager::createMessageBox (const std::string& message) void MessageBoxManager::createMessageBox (const std::string& message)
{ {
std::cout << "MessageBox: " << message << std::endl;
MessageBox *box = new MessageBox(*this, message); MessageBox *box = new MessageBox(*this, message);
removeMessageBox(message.length()*mMessageBoxSpeed, box); removeMessageBox(message.length()*mMessageBoxSpeed, box);
@ -387,8 +385,3 @@ int InteractiveMessageBox::readPressedButton ()
mButtonPressed = -1; mButtonPressed = -1;
return pressed; return pressed;
} }