From 57f895b563036449d4765f8714dee988a2782dd9 Mon Sep 17 00:00:00 2001 From: "arthur.jamet" Date: Thu, 17 Jun 2021 12:07:07 +0200 Subject: [PATCH] remve ascii escape --- lib/Ray/sources/Exceptions/RayError.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Ray/sources/Exceptions/RayError.cpp b/lib/Ray/sources/Exceptions/RayError.cpp index 24fb4be8..ee0d4fa7 100644 --- a/lib/Ray/sources/Exceptions/RayError.cpp +++ b/lib/Ray/sources/Exceptions/RayError.cpp @@ -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") { }