- Timestamp:
- Oct 28, 2008, 9:11:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/network/Synchronisable.cc
r2028 r2031 142 142 // update data and create object/entity... 143 143 bool b = no->updateData(mem, mode, true); 144 assert(b); 145 b = no->create(); 146 assert(b); 144 // assert(b); 145 if (b) 146 { 147 b = no->create(); 148 assert(b); 149 } 147 150 return no; 148 151 }
Note: See TracChangeset
for help on using the changeset viewer.