remve ascii escape

This commit is contained in:
arthur.jamet
2021-06-17 12:07:07 +02:00
parent 1f1379a5a5
commit 57f895b563
+1 -1
View File
@@ -28,6 +28,6 @@ RAY::Exception::WrongInputError::WrongInputError(const std::string &what):
}
RAY::Exception::ResourceNotFound::ResourceNotFound(const std::string &path):
RayError("\033[36m" + path + "\033[31m couldn't be loaded\033[0m")
RayError(path + " couldn't be loaded")
{
}