mirror of https://github.com/stella-emu/stella.git
I keep forgetting to commit this simple fix.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1382 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
938249cd71
commit
d236bb24f2
|
@ -14,7 +14,7 @@
|
||||||
// See the file "license" for information on usage and redistribution of
|
// See the file "license" for information on usage and redistribution of
|
||||||
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
||||||
//
|
//
|
||||||
// $Id: EventHandler.cxx,v 1.210 2007-09-23 17:04:17 stephena Exp $
|
// $Id: EventHandler.cxx,v 1.211 2007-09-25 13:04:24 stephena Exp $
|
||||||
//============================================================================
|
//============================================================================
|
||||||
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -1326,7 +1326,7 @@ void EventHandler::setActionMappings(EventMode mode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Joystick axis mapping/labeling
|
// Joystick axis mapping/labeling
|
||||||
for(stick = 0; stick < kNumJoysticks; ++stick)
|
for(int stick = 0; stick < kNumJoysticks; ++stick)
|
||||||
{
|
{
|
||||||
for(axis = 0; axis < kNumJoyAxis; ++axis)
|
for(axis = 0; axis < kNumJoyAxis; ++axis)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue