mirror of https://github.com/stella-emu/stella.git
Removed some debugging code from MouseControl.
Bumped version # for a test release. git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2376 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
723d95cba2
commit
4b14711a8f
|
@ -175,11 +175,11 @@ void MouseControl::addRightControllerModes(bool noswap)
|
|||
void MouseControl::addPaddleModes(int lport, int rport, int lname, int rname)
|
||||
{
|
||||
ostringstream msg;
|
||||
msg << "Mouse is Paddle " << lname << " controller" << "(" << lport << ")";
|
||||
msg << "Mouse is Paddle " << lname << " controller";
|
||||
MouseMode mode0(Automatic, Automatic, lport, msg.str());
|
||||
|
||||
msg.str("");
|
||||
msg << "Mouse is Paddle " << rname << " controller" << "(" << rport << ")";
|
||||
msg << "Mouse is Paddle " << rname << " controller";
|
||||
MouseMode mode1(Automatic, Automatic, rport, msg.str());
|
||||
|
||||
if(BSPF_equalsIgnoreCase(myProps.get(Controller_SwapPaddles), "NO"))
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include <cstdlib>
|
||||
|
||||
#define STELLA_VERSION "3.5.1_svn"
|
||||
#define STELLA_VERSION "3.5.5_pre1"
|
||||
#define STELLA_BUILD atoi("$Rev$" + 6)
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue