mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-19 11:03:01 +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 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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user