mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-21 12:03:02 +00:00
Fix NvApp constructor
This commit is contained in:
parent
fcfcce88dd
commit
90fc5797d5
@ -8,9 +8,7 @@ public class NvApp {
|
|||||||
private boolean isRunning;
|
private boolean isRunning;
|
||||||
private boolean initialized;
|
private boolean initialized;
|
||||||
|
|
||||||
public NvApp() {
|
public NvApp() {}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public NvApp(String appName) {
|
public NvApp(String appName) {
|
||||||
this.appName = appName;
|
this.appName = appName;
|
||||||
@ -19,6 +17,7 @@ public class NvApp {
|
|||||||
public NvApp(String appName, int appId) {
|
public NvApp(String appName, int appId) {
|
||||||
this.appName = appName;
|
this.appName = appName;
|
||||||
this.appId = appId;
|
this.appId = appId;
|
||||||
|
this.initialized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAppName(String appName) {
|
public void setAppName(String appName) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user