Nicolas Cannasse 2 years ago
parent
commit
7c938f2a33
1 changed files with 1 additions and 1 deletions
  1. 1 1
      hxd/BufferFormat.hx

+ 1 - 1
hxd/BufferFormat.hx

@@ -136,7 +136,7 @@ class BufferFormat {
 	public static function make( inputs : Array<BufferInput> ) {
 	public static function make( inputs : Array<BufferInput> ) {
 		var names = [];
 		var names = [];
 		for( b in inputs )
 		for( b in inputs )
-			names.push(b);
+			names.push(b.name);
 		var key = names.join("|");
 		var key = names.join("|");
 		var arr = ALL_FORMATS.get(key);
 		var arr = ALL_FORMATS.get(key);
 		if( arr == null ) {
 		if( arr == null ) {