Cleaned up formatting for joystick logging.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2290 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2011-12-18 19:47:45 +00:00
parent 4c8cfb3da0
commit 9d93318450
1 changed files with 2 additions and 2 deletions

View File

@ -228,10 +228,10 @@ void EventHandler::setupJoysticks()
ostringstream buf;
buf << "Joystick devices found:" << endl;
for(uInt32 i = 0; i < myNumJoysticks; ++i)
buf << " " << i << ": " << myJoysticks[i].about() << endl;
buf << " " << i << ": " << myJoysticks[i].about() << endl << endl;
myOSystem->logMessage(buf.str(), 1);
#else
myOSystem->logMessage("No joysticks present.\n", 1);
myOSystem->logMessage("No joysticks present.\n\n", 1);
#endif
}