Changeset 8646 for code/branches/presentation/src
- Timestamp:
- May 28, 2011, 7:35:35 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/libraries/network/LANDiscovery.cc
r8351 r8646 38 38 namespace orxonox 39 39 { 40 ManageScopedSingleton(LANDiscovery, ScopeID:: Root, true);40 ManageScopedSingleton(LANDiscovery, ScopeID::Graphics, true); 41 41 42 42 LANDiscovery::LANDiscovery() … … 49 49 LANDiscovery::~LANDiscovery() 50 50 { 51 enet_host_destroy(this->host_); 51 if (this->host_ != NULL) 52 enet_host_destroy(this->host_); 52 53 } 53 54
Note: See TracChangeset
for help on using the changeset viewer.