diff options
author | pixel <pixel> | 2006-02-09 16:59:55 +0000 |
---|---|---|
committer | pixel <pixel> | 2006-02-09 16:59:55 +0000 |
commit | c9c08ba9dd28fe23c59d62b4c04361d7a1406a25 (patch) | |
tree | d38c706360697dafeaad1d10479d2ad11bee6bc8 /Dalos | |
parent | 724f9caca810a0727211c6d44076417326ad22f0 (diff) |
Adding thread creation/destruction hooks.
Diffstat (limited to 'Dalos')
-rw-r--r-- | Dalos/Console.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dalos/Console.cc b/Dalos/Console.cc index 972349f..51b35f9 100644 --- a/Dalos/Console.cc +++ b/Dalos/Console.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Console.cc,v 1.7 2006-02-02 11:01:12 pixel Exp $ */ +/* $Id: Console.cc,v 1.8 2006-02-09 16:59:55 pixel Exp $ */ #include <SDL.h> #include <SDL_thread.h> @@ -310,4 +310,4 @@ void console::create_console_thread() { SDL_CreateThread(ReadLineInternals::readline_thread, 0); } -console * CurrentConsole; +console * CurrentConsole = 0; |