1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-25 15:37:42 +00:00

Use SafeFlag for EditorHTTPServer.server_quit

This commit is contained in:
Wilson E. Alvarez
2024-02-09 14:35:32 -05:00
parent 4e990cd7e5
commit c32e48890f
2 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ private:
uint8_t req_buf[4096];
int req_pos = 0;
SafeNumeric<bool> server_quit;
SafeFlag server_quit;
Mutex server_lock;
Thread server_thread;