From 93036081023d73132d976d9b2544d7d7be074124 Mon Sep 17 00:00:00 2001 From: Yuxiao Mao Date: Thu, 8 Jan 2026 08:47:07 +0100 Subject: [PATCH] Fix no uv typo in LiveClass --- hscript/LiveClass.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscript/LiveClass.hx b/hscript/LiveClass.hx index a3f23fb..11d0419 100644 --- a/hscript/LiveClass.hx +++ b/hscript/LiveClass.hx @@ -117,7 +117,7 @@ class LiveClass { public static function registerFile( file : String, onChange : Void -> Void ) { for( dir in CONFIG.srcPath ) { var path = dir+"/"+file; - #if (hl && hl_no_libuv) + #if (hl && !hl_no_libuv) if( !sys.FileSystem.exists(path) ) continue; new hl.uv.Fs(null, path, function(ev) onChange()); #else