mirror of https://github.com/stella-emu/stella.git
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:
parent
4c8cfb3da0
commit
9d93318450
|
@ -228,10 +228,10 @@ void EventHandler::setupJoysticks()
|
||||||
ostringstream buf;
|
ostringstream buf;
|
||||||
buf << "Joystick devices found:" << endl;
|
buf << "Joystick devices found:" << endl;
|
||||||
for(uInt32 i = 0; i < myNumJoysticks; ++i)
|
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);
|
myOSystem->logMessage(buf.str(), 1);
|
||||||
#else
|
#else
|
||||||
myOSystem->logMessage("No joysticks present.\n", 1);
|
myOSystem->logMessage("No joysticks present.\n\n", 1);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue