Changeset 5802 in orxonox.OLD for branches/network/src/subprojects
- Timestamp:
- Nov 27, 2005, 7:17:56 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/subprojects/network/simple_sync.cc
r5800 r5802 96 96 for(int i = 0; i < this->recLength; i++) 97 97 { 98 PRINT(0)(" %i",this->inData[i]);98 PRINT(0)(" [%u] ",this->inData[i]); 99 99 } 100 100 PRINT(0)("|\n"); … … 104 104 void SimpleSync::readDebug() 105 105 { 106 PRINTF(0)("Read out : |");106 PRINTF(0)("Read out bytes: |"); 107 107 for(int i = 0; i < this->outLength; i++) 108 108 { 109 PRINT(0)(" %c",this->outData[i]);109 PRINT(0)(" [%u] ",this->outData[i]); 110 110 } 111 111 PRINT(0)("|\n");
Note: See TracChangeset
for help on using the changeset viewer.