Skip to content

Commit ba0b484

Browse files
committed
Change of naming in the debug menu
2 parents b0bc89e + 1736b85 commit ba0b484

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Assets/PatchKit Patcher/Scripts/Debug/DebugMenu.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,22 +69,22 @@ void Draw(int id)
6969
GUI.BringWindowToFront(1);
7070
}
7171

72-
if (GUILayout.Button("Open Patcher log file"))
72+
if (GUILayout.Button("Open Launcher log file"))
7373
{
7474
OpenPatcherLogFile();
7575
}
7676

77-
if (GUILayout.Button("Open Patcher log file location"))
77+
if (GUILayout.Button("Open Launcher log file location"))
7878
{
7979
OpenPatcherLogFileLocation();
8080
}
8181

82-
if (GUILayout.Button("Open Launcher log file"))
82+
if (GUILayout.Button("Open Runner log file"))
8383
{
8484
OpenLauncherLogFile();
8585
}
8686

87-
if (GUILayout.Button("Open Launcher log file location"))
87+
if (GUILayout.Button("Open Runner log file location"))
8888
{
8989
OpenLauncherLogFileLocation();
9090
}
@@ -155,7 +155,7 @@ private void OpenPopup(string popupMessage)
155155
private void OpenLauncherLogFileLocation()
156156
{
157157
#if UNITY_EDITOR
158-
OpenPopup("Access to Launcher in the editor is not possible");
158+
OpenPopup("Access to Runner in the editor is not possible");
159159
#else
160160
#if UNITY_STANDALONE_OSX
161161
string logDirectoryPath = Patcher.Instance.Data.Value.LockFilePath.Replace(
@@ -170,7 +170,7 @@ private void OpenLauncherLogFileLocation()
170170
private void OpenLauncherLogFile()
171171
{
172172
#if UNITY_EDITOR
173-
OpenPopup("Access to Launcher in the editor is not possible");
173+
OpenPopup("Access to Runner in the editor is not possible");
174174
#else
175175
#if UNITY_STANDALONE_OSX
176176
string logPath = Patcher.Instance.Data.Value.LockFilePath.Replace(

0 commit comments

Comments
 (0)