فهرست منبع

Fixes bug where slashes would disappear

Fixes bug where backslashes would disappear because of backslash being an escape character. (I think)
Thareh 1 سال پیش
والد
کامیت
f3d0db0cf5
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      ctranslator.bmx

+ 1 - 0
ctranslator.bmx

@@ -6803,6 +6803,7 @@ End If
 		If opt_debug Then
 		If opt_debug Then
 			For Local Hash:String = EachIn fileRegister.Keys()
 			For Local Hash:String = EachIn fileRegister.Keys()
 				Local file:String = String(fileRegister.ValueForKey(Hash))
 				Local file:String = String(fileRegister.ValueForKey(Hash))
+				file = file.Replace("\", "\\")
 				Emit "bbRegisterSource(" + Hash + ", ~q" + file + "~q);"
 				Emit "bbRegisterSource(" + Hash + ", ~q" + file + "~q);"
 			Next
 			Next
 		End If
 		End If