2
0
Эх сурвалжийг харах

Merge pull request #85 from GWRon/fix_bmxpath

Fix: replace "\" in bcc.conf-paths to crossplatform "/"
Brucey 10 жил өмнө
parent
commit
7afdc7d3e9
1 өөрчлөгдсөн 3 нэмэгдсэн , 0 устгасан
  1. 3 0
      options.bmx

+ 3 - 0
options.bmx

@@ -256,5 +256,8 @@ Function CheckConfig()
 	'load default/generic path
 	If osBmxPath = "" Then osBmxPath = config.GetString("BMXPATH")
 
+	'replace windows backslashes with crossplatform slashes
+	osBmxPath = osBmxPath.replace("\", "/")
+
 	If osBmxPath <> "" Then putenv_("BMXPATH="+osBmxPath)
 End Function