From: Philip Chimento Date: Sat, 31 Aug 2013 21:07:08 +0000 (-0700) Subject: Use g_thread_try_new() instead of g_thread_create() X-Git-Url: https://git.stderr.nl/gitweb?a=commitdiff_plain;h=649f028a525fc6703019e8eec7b8eb233993091e;hp=649f028a525fc6703019e8eec7b8eb233993091e;p=projects%2Fchimara%2Fchimara.git Use g_thread_try_new() instead of g_thread_create() g_thread_create() was deprecated in GLib 2.32. We don't use g_thread_new() because the program should not abort if the thread could not be created; rather, it should display an error message and refuse to start the game. ---