mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-04-04 23:16:14 +00:00
Fix NvApp constructor
This commit is contained in:
@@ -8,9 +8,7 @@ public class NvApp {
|
||||
private boolean isRunning;
|
||||
private boolean initialized;
|
||||
|
||||
public NvApp() {
|
||||
|
||||
}
|
||||
public NvApp() {}
|
||||
|
||||
public NvApp(String appName) {
|
||||
this.appName = appName;
|
||||
@@ -19,6 +17,7 @@ public class NvApp {
|
||||
public NvApp(String appName, int appId) {
|
||||
this.appName = appName;
|
||||
this.appId = appId;
|
||||
this.initialized = true;
|
||||
}
|
||||
|
||||
public void setAppName(String appName) {
|
||||
|
||||
Reference in New Issue
Block a user