diff --git a/libs/gfx/source/renderer/deferred.cpp b/libs/gfx/source/renderer/deferred.cpp index b78c73dd..3036a563 100644 --- a/libs/gfx/source/renderer/deferred.cpp +++ b/libs/gfx/source/renderer/deferred.cpp @@ -1049,10 +1049,10 @@ void main() assert(o.mesh); if (o.mat->lit && o.mat->transparent) - throw std::runtime_error("Materials that are both tit & transparent are not supported"); + throw std::runtime_error("Materials that are both lit & transparent are not supported"); if (o.mat->lit && o.mat->blooming) - throw std::runtime_error("Materials that are both tit & blooming are not supported"); + throw std::runtime_error("Materials that are both lit & blooming are not supported"); if (o.mat->casts_shadow && o.mat->transparent) throw std::runtime_error("Transparent objects cannot cast shadow");