Nicolas Cannasse il y a 6 ans
Parent
commit
1da551689f
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      src/module.c

+ 2 - 1
src/module.c

@@ -541,7 +541,8 @@ bool hl_module_patch( hl_module *m1, hl_code *c ) {
 				int hash2 = m2->functions_hashes[i2];
 				int hash2 = m2->functions_hashes[i2];
 				if( hash1 == hash2 )
 				if( hash1 == hash2 )
 					break;
 					break;
-				uprintf(USTR("%s.%s has been modified\n"), f1->obj->name, f1->field);
+				uprintf(USTR("%s."), f1->obj->name);
+				uprintf(USTR("%s has been modified\n"), f1->field);
 				m1->functions_hashes[i1] = hash2; // update hash
 				m1->functions_hashes[i1] = hash2; // update hash
 				int fpos = hl_jit_function(ctx, m2, f2);
 				int fpos = hl_jit_function(ctx, m2, f2);
 				if( fpos < 0 ) break;
 				if( fpos < 0 ) break;