mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-30 13:20:28 +00:00
Use ASSERT instead of assert
This commit is contained in:
parent
f532539a76
commit
ba1a8611a9
@ -24,7 +24,7 @@ namespace doc {
|
||||
}
|
||||
|
||||
inline int scale_6bits_to_8bits(const int v) {
|
||||
assert(v >= 0 && v < 64);
|
||||
ASSERT(v >= 0 && v < 64);
|
||||
return (v << 2) | (v >> 4);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user