mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-01-12 22:03:37 +00:00
Fix uneeded negative test because type is uint ( warning: comparison is always false due to limited range of data type)
This commit is contained in:
parent
17aa58bbf8
commit
5cdaac6b82
@ -857,7 +857,7 @@ int8_t qrcode_initText(QRCode *qrcode, uint8_t *modules, uint8_t version, uint8_
|
||||
}
|
||||
|
||||
bool qrcode_getModule(QRCode *qrcode, uint8_t x, uint8_t y) {
|
||||
if (x < 0 || x >= qrcode->size || y < 0 || y >= qrcode->size) {
|
||||
if ( x >= qrcode->size || y >= qrcode->size) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user