mirror of
https://github.com/overte-org/overte.git
synced 2025-07-04 12:29:49 +02:00
type squish
This commit is contained in:
parent
6fff53a2dc
commit
afcf6dd3e0
2 changed files with 16 additions and 16 deletions
|
@ -29,7 +29,7 @@ void printOctalCode(const unsigned char * octalCode) {
|
|||
if (!octalCode) {
|
||||
qDebug("NULL\n");
|
||||
} else {
|
||||
for (int i = 0; i < bytesRequiredForCodeLength(*octalCode); i++) {
|
||||
for (int i = 0; i < bytesRequiredForCodeLength(numberOfThreeBitSectionsInCode(octalCode)); i++) {
|
||||
outputBits(octalCode[i],false);
|
||||
}
|
||||
qDebug("\n");
|
||||
|
|
Loading…
Reference in a new issue