mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 12:43:19 +02:00
removed assert
This commit is contained in:
parent
eef0636655
commit
ceb15d407d
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ int getSemiNibbleAt(unsigned char& byte, int bitIndex) {
|
|||
}
|
||||
|
||||
void setSemiNibbleAt(unsigned char& byte, int bitIndex, int value) {
|
||||
assert(value <= 3 && value >= 0);
|
||||
//assert(value <= 3 && value >= 0);
|
||||
byte += ((value & 3) << (7 - bitIndex)); // semi-nibbles store 00, 01, 10, or 11
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue