소스 검색

Fix memory $ compile

Yuxiao Mao 1 년 전
부모
커밋
c971dc99aa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      other/haxelib/hlmem/Memory.hx

+ 1 - 1
other/haxelib/hlmem/Memory.hx

@@ -46,7 +46,7 @@ class Stats {
 			totCount += i.count;
 			totMem += i.mem;
 			var tpath = getPathStrings(mem, i.tl);
-			mem.log(Memory.withColor(i.count + " count, " + Memory.MB(i.mem) + " ", 33) + tpath.join(${Memory.withColor(' > ', 36)}));
+			mem.log(Memory.withColor(i.count + " count, " + Memory.MB(i.mem) + " ", 33) + tpath.join(Memory.withColor(' > ', 36)));
 		}
 		if( withSum )
 			mem.log("Total: "+totCount+" count, "+Memory.MB(totMem));