From 28e61f846a26a9018a8739beb55c371e2cde4ceb Mon Sep 17 00:00:00 2001 From: kayomn Date: Tue, 4 Oct 2022 13:54:17 +0100 Subject: [PATCH] Improve clarity of SDL2_WaitThread behavior comment --- src/sys.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sys.zig b/src/sys.zig index 8d41844..ff5755f 100644 --- a/src/sys.zig +++ b/src/sys.zig @@ -108,8 +108,8 @@ pub const EventLoop = opaque { { var status = @as(c_int, 0); - // SDL2 defines waiting on a null thread reference as a no-op. - // https://wiki.libsdl.org/SDL_WaitThread + // SDL2 defines waiting on a null thread reference as a no-op. See + // https://wiki.libsdl.org/SDL_WaitThread for more information ext.SDL_WaitThread(implementation.file_system_thread, &status); if (status != 0) {