From 81accad822ee07fe00619b005952eca0d9ffb092 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Fri, 10 Apr 2015 10:21:39 -0700 Subject: [PATCH] Disable references to removed Sound.java file --- .../android/template/src/org/haxe/lime/GameActivity.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/legacy/templates/android/template/src/org/haxe/lime/GameActivity.java b/legacy/templates/android/template/src/org/haxe/lime/GameActivity.java index 09fc8ce83..1e5ea6a42 100644 --- a/legacy/templates/android/template/src/org/haxe/lime/GameActivity.java +++ b/legacy/templates/android/template/src/org/haxe/lime/GameActivity.java @@ -80,7 +80,7 @@ public class GameActivity extends Activity implements SensorEventListener { private static MainView mMainView; private MainView mView; - private Sound _sound; + //private Sound _sound; protected void onCreate (Bundle state) { @@ -97,7 +97,7 @@ public class GameActivity extends Activity implements SensorEventListener { Extension.mainActivity = this; Extension.mainContext = this; - _sound = new Sound (getApplication ()); + //_sound = new Sound (getApplication ()); requestWindowFeature (Window.FEATURE_NO_TITLE); @@ -237,7 +237,7 @@ public class GameActivity extends Activity implements SensorEventListener { public void doPause () { - _sound.doPause (); + //_sound.doPause (); mView.sendActivity (Lime.DEACTIVATE); mView.onPause (); @@ -255,7 +255,7 @@ public class GameActivity extends Activity implements SensorEventListener { mView.onResume (); - _sound.doResume (); + //_sound.doResume (); mView.sendActivity (Lime.ACTIVATE);