aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs')
-rw-r--r--OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs b/OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs
index 0d866af..177d7e8 100644
--- a/OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs
+++ b/OpenSim/Tools/LaunchSLClient/LaunchSLClient/OSXConfig.cs
@@ -43,13 +43,13 @@ namespace LaunchSLClient
43 exePath = "/Applications/Second Life Release Candidate.app/Contents/MacOS"; 43 exePath = "/Applications/Second Life Release Candidate.app/Contents/MacOS";
44 } 44 }
45 45
46 runLine = exePath + "/Second Life"; 46 runLine = Path.Combine(exePath, "Second Life");
47 exeFlags = ""; 47 exeFlags = string.Empty;
48 } 48 }
49 49
50 public override string GetConfigDir() 50 public override string GetConfigDir()
51 { 51 {
52 return ""; 52 return string.Empty;
53 } 53 }
54 } 54 }
55} 55}