Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Move EmulationActivity.java and NativeGLSurfaceView.java in…
…to a new sub-package called emulation. Now, all that's kept within the base package is the main class, the native calling class, etc.
  • Loading branch information
lioncash committed Sep 23, 2013
1 parent 54c3b8d commit d903983
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Source/Android/AndroidManifest.xml
Expand Up @@ -35,7 +35,7 @@

<activity android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity" />

<activity android:name="org.dolphinemu.dolphinemu.EmulationActivity"
<activity android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
android:screenOrientation="landscape" />

<activity
Expand Down
2 changes: 1 addition & 1 deletion Source/Android/res/layout/emulation_view.xml
Expand Up @@ -4,7 +4,7 @@
android:layout_height="match_parent">

<!-- This is what everything is rendered to during emulation -->
<org.dolphinemu.dolphinemu.NativeGLSurfaceView
<org.dolphinemu.dolphinemu.emulation.NativeGLSurfaceView
android:id="@+id/emulationView"
android:layout_height="match_parent"
android:layout_width="match_parent"
Expand Down
@@ -1,4 +1,4 @@
package org.dolphinemu.dolphinemu;
package org.dolphinemu.dolphinemu.emulation;

import android.app.Activity;
import android.app.AlertDialog;
Expand All @@ -13,6 +13,9 @@
import android.util.DisplayMetrics;
import android.view.*;
import android.view.WindowManager.LayoutParams;

import org.dolphinemu.dolphinemu.NativeLibrary;
import org.dolphinemu.dolphinemu.R;
import org.dolphinemu.dolphinemu.settings.InputConfigFragment;
import org.dolphinemu.dolphinemu.settings.VideoSettingsFragment;

Expand Down
Expand Up @@ -4,7 +4,9 @@
* Refer to the license.txt file included.
*/

package org.dolphinemu.dolphinemu;
package org.dolphinemu.dolphinemu.emulation;

import org.dolphinemu.dolphinemu.NativeLibrary;

import android.content.Context;
import android.util.AttributeSet;
Expand Down
Expand Up @@ -25,9 +25,9 @@
import java.util.List;
import java.util.Set;

import org.dolphinemu.dolphinemu.EmulationActivity;
import org.dolphinemu.dolphinemu.NativeLibrary;
import org.dolphinemu.dolphinemu.R;
import org.dolphinemu.dolphinemu.emulation.EmulationActivity;


/**
Expand Down

0 comments on commit d903983

Please sign in to comment.