diff options
author | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-12-23 15:26:29 +0100 |
---|---|---|
committer | faketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2011-12-23 15:26:29 +0100 |
commit | aa392170a2b0fc392c8203a4b31301eb7c94890e (patch) | |
tree | 3ab9ec0b2046dd25f7221dbfad563befdb83469c /source/cRoot.cpp | |
parent | Digging leaves with shears now drops leaves (diff) | |
download | cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.gz cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.bz2 cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.lz cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.xz cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.tar.zst cuberite-aa392170a2b0fc392c8203a4b31301eb7c94890e.zip |
Diffstat (limited to 'source/cRoot.cpp')
-rw-r--r-- | source/cRoot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cRoot.cpp b/source/cRoot.cpp index 518275088..928461976 100644 --- a/source/cRoot.cpp +++ b/source/cRoot.cpp @@ -111,7 +111,7 @@ void cRoot::Start() m_Server->StartListenThread();
//cHeartBeat* HeartBeat = new cHeartBeat();
- m_InputThread = new cThread( InputThread, this );
+ m_InputThread = new cThread( InputThread, this, "cRoot::InputThread" );
m_InputThread->Start( true );
while( !m_bStop && !m_bRestart ) // These are modified by external threads
|