Daniele Bartolini 6 anni fa
parent
commit
01b78a87b5
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/device/device.cpp

+ 2 - 2
src/device/device.cpp

@@ -669,7 +669,7 @@ void Device::reload(StringId64 type, StringId64 name)
 {
 	ResourceId res_id = resource_id(type, name);
 
-	logi(DEVICE, "Reloading " RESOURCE_ID, res_id._id);
+	logi(DEVICE, "Reloading: " RESOURCE_ID, res_id._id);
 
 	_resource_manager->reload(type, name);
 	const void* new_resource = _resource_manager->get(type, name);
@@ -679,7 +679,7 @@ void Device::reload(StringId64 type, StringId64 name)
 		_lua_environment->execute((const LuaResource*)new_resource, 0);
 	}
 
-	logi(DEVICE, "Reloaded " RESOURCE_ID, res_id._id);
+	logi(DEVICE, "Reloaded: " RESOURCE_ID, res_id._id);
 }
 
 void Device::log(const char* msg)