Navigation Menu

Skip to content

Commit

Permalink
Renamed a class in Java file for consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Nov 10, 2013
1 parent 802f83f commit 2d67178
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -483,7 +483,7 @@ public SDLSurface(Context context) {
mSensorManager = (SensorManager)context.getSystemService(Context.SENSOR_SERVICE);

if(Build.VERSION.SDK_INT >= 12) {
setOnGenericMotionListener(new SDLGenericMotionHandler_API12());
setOnGenericMotionListener(new SDLGenericMotionListener_API12());
}

// Some arbitrary defaults to avoid a potential division by zero
Expand Down Expand Up @@ -886,7 +886,7 @@ public int getJoyId(int devId) {

}

class SDLGenericMotionHandler_API12 implements View.OnGenericMotionListener {
class SDLGenericMotionListener_API12 implements View.OnGenericMotionListener {
// Generic Motion (mouse hover, joystick...) events go here
// We only have joysticks yet
@Override
Expand Down

0 comments on commit 2d67178

Please sign in to comment.