diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-30 10:58:29 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-30 10:58:29 +0100 |
| commit | 5f617c56e17ce33ca9be5cfd051deb640fb8200b (patch) | |
| tree | ed34915662f98b517565f26880858a48b68df551 /core/compress/common.odin | |
| parent | 7ef30355cbf234aa48b6ee1ad013fb46af27d8dc (diff) | |
Minor stylistic code changes to compress and image packages
Diffstat (limited to 'core/compress/common.odin')
| -rw-r--r-- | core/compress/common.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/compress/common.odin b/core/compress/common.odin index 99b054903..11b5b74b3 100644 --- a/core/compress/common.odin +++ b/core/compress/common.odin @@ -200,4 +200,4 @@ read_bits_no_refill_lsb :: #force_inline proc(z: ^Context, width: u8) -> u32 { discard_to_next_byte_lsb :: proc(z: ^Context) { discard := u8(z.num_bits & 7); consume_bits_lsb(z, discard); -}
\ No newline at end of file +} |