mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-21 21:41:09 +00:00
[Android] Move EmulationActivity.java and NativeGLSurfaceView.java into a new sub-package called emulation. Now, all that's kept within the base package is the main class, the native calling class, etc.
This commit is contained in:
parent
54c3b8d357
commit
d903983564
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
<activity android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity" />
|
<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" />
|
android:screenOrientation="landscape" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<!-- This is what everything is rendered to during emulation -->
|
<!-- This is what everything is rendered to during emulation -->
|
||||||
<org.dolphinemu.dolphinemu.NativeGLSurfaceView
|
<org.dolphinemu.dolphinemu.emulation.NativeGLSurfaceView
|
||||||
android:id="@+id/emulationView"
|
android:id="@+id/emulationView"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package org.dolphinemu.dolphinemu;
|
package org.dolphinemu.dolphinemu.emulation;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.app.AlertDialog;
|
import android.app.AlertDialog;
|
||||||
@ -13,6 +13,9 @@ import android.preference.PreferenceManager;
|
|||||||
import android.util.DisplayMetrics;
|
import android.util.DisplayMetrics;
|
||||||
import android.view.*;
|
import android.view.*;
|
||||||
import android.view.WindowManager.LayoutParams;
|
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.InputConfigFragment;
|
||||||
import org.dolphinemu.dolphinemu.settings.VideoSettingsFragment;
|
import org.dolphinemu.dolphinemu.settings.VideoSettingsFragment;
|
||||||
|
|
@ -4,7 +4,9 @@
|
|||||||
* Refer to the license.txt file included.
|
* 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.content.Context;
|
||||||
import android.util.AttributeSet;
|
import android.util.AttributeSet;
|
@ -25,9 +25,9 @@ import java.util.HashSet;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.dolphinemu.dolphinemu.EmulationActivity;
|
|
||||||
import org.dolphinemu.dolphinemu.NativeLibrary;
|
import org.dolphinemu.dolphinemu.NativeLibrary;
|
||||||
import org.dolphinemu.dolphinemu.R;
|
import org.dolphinemu.dolphinemu.R;
|
||||||
|
import org.dolphinemu.dolphinemu.emulation.EmulationActivity;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user