mirror of
https://github.com/overte-org/overte.git
synced 2025-07-05 03:09:17 +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) {
|
if (!octalCode) {
|
||||||
qDebug("NULL\n");
|
qDebug("NULL\n");
|
||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < bytesRequiredForCodeLength(*octalCode); i++) {
|
for (int i = 0; i < bytesRequiredForCodeLength(numberOfThreeBitSectionsInCode(octalCode)); i++) {
|
||||||
outputBits(octalCode[i],false);
|
outputBits(octalCode[i],false);
|
||||||
}
|
}
|
||||||
qDebug("\n");
|
qDebug("\n");
|
||||||
|
|
Loading…
Reference in a new issue