From f9581178deeb4aa794db10d4ad789943fd91e527 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 22 Aug 2023 10:51:41 -0400 Subject: [PATCH] cmake: fixed a typo. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f7ed0b95..c97a3989b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -112,8 +112,8 @@ endif() # for systems without support. It's not currently enough to not use # pthread functions in a pthread-build; it won't start up on unsupported # browsers. As such, you have to explicitly enable it on Emscripten builds -# for the time being. This default with change to ON once this becomes -# commonly supported in browsers or the Emscripten teams makes a single +# for the time being. This default will change to ON once this becomes +# commonly supported in browsers or the Emscripten team makes a single # binary work everywhere. if (UNIX_OR_MAC_SYS AND NOT EMSCRIPTEN) set(SDL_PTHREADS_DEFAULT ON)