diff --git a/moonlight-common/src/com/limelight/nvstream/NvConnection.java b/moonlight-common/src/com/limelight/nvstream/NvConnection.java index 8885be67..351a62eb 100644 --- a/moonlight-common/src/com/limelight/nvstream/NvConnection.java +++ b/moonlight-common/src/com/limelight/nvstream/NvConnection.java @@ -226,6 +226,11 @@ public class NvConnection { { boolean success = false; + if (currentStage == NvConnectionListener.Stage.LAUNCH_APP) { + // Display the app name instead of the stage name + currentStage.setName(config.getApp()); + } + listener.stageStarting(currentStage); try { switch (currentStage) diff --git a/moonlight-common/src/com/limelight/nvstream/NvConnectionListener.java b/moonlight-common/src/com/limelight/nvstream/NvConnectionListener.java index 97c00a63..14ab73e3 100644 --- a/moonlight-common/src/com/limelight/nvstream/NvConnectionListener.java +++ b/moonlight-common/src/com/limelight/nvstream/NvConnectionListener.java @@ -15,6 +15,10 @@ public interface NvConnectionListener { this.name = name; } + void setName(String name) { + this.name = name; + } + public String getName() { return name; }