From 76a6dbd09f1283e12b16a82fcf9c5d4e418c3871 Mon Sep 17 00:00:00 2001 From: Erik Onarheim Date: Wed, 20 Mar 2024 19:01:55 -0500 Subject: [PATCH] fix: Broken link in error message --- src/engine/Engine.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/Engine.ts b/src/engine/Engine.ts index 1d5d46d0a..04bb36adf 100644 --- a/src/engine/Engine.ts +++ b/src/engine/Engine.ts @@ -897,7 +897,7 @@ O|===|* >________________>\n\ this._logger.warn( `Excalibur could not load webgl for some reason (${(e as Error).message}) and loaded a Canvas 2D fallback. ` + `Some features of Excalibur will not work in this mode. \n\n` + - 'Read more about this issue at https://excaliburjs.com/docs/webgl' + 'Read more about this issue at https://excaliburjs.com/docs/performance' ); // fallback to canvas in case of failure useCanvasGraphicsContext = true;