mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
macos port but it actually works?
This commit is contained in:
parent
78e08c2e63
commit
284cbf7e55
1 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ namespace MPN00BS
|
||||||
|
|
||||||
clientProcess.StartInfo.FileName = executable;
|
clientProcess.StartInfo.FileName = executable;
|
||||||
|
|
||||||
#if defined(OS_LINUX) || defined(OS_MACOS)
|
#if OS_LINUX || OS_MACOS
|
||||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle_mapfix.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||||
#else
|
#else
|
||||||
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
clientProcess.StartInfo.Arguments = "http://"+cs.ipaddr+":"+cs.portnum+"/horseisle.swf?SERVER=" + serverIp + "&PORT=" + serverPort.ToString();
|
||||||
|
@ -222,7 +222,7 @@ namespace MPN00BS
|
||||||
|
|
||||||
BaseDir = Path.Combine(hispFolder, "HISP", "N00BS");
|
BaseDir = Path.Combine(hispFolder, "HISP", "N00BS");
|
||||||
Directory.CreateDirectory(BaseDir);
|
Directory.CreateDirectory(BaseDir);
|
||||||
#elif defined(OS_LINUX) || defined(OS_MACOS)
|
#elif OS_LINUX || OS_MACOS
|
||||||
string hispFolder = Environment.GetEnvironmentVariable("HOME");
|
string hispFolder = Environment.GetEnvironmentVariable("HOME");
|
||||||
if (hispFolder == null)
|
if (hispFolder == null)
|
||||||
return;
|
return;
|
||||||
|
@ -237,7 +237,7 @@ namespace MPN00BS
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
||||||
#if defined(OS_LINUX) || defined(OS_MACOS)
|
#if OS_LINUX || OS_MACOS
|
||||||
cs = new ContentServer("127.0.0.1", 12322);
|
cs = new ContentServer("127.0.0.1", 12322);
|
||||||
#else
|
#else
|
||||||
cs = new ContentServer("127.0.0.1", 80);
|
cs = new ContentServer("127.0.0.1", 80);
|
||||||
|
|
Loading…
Add table
Reference in a new issue