diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-10 12:56:34 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-10 12:56:34 +0000 |
| commit | 8610acb48f2fd0c9d280c9a7973caf8db4143cf9 (patch) | |
| tree | d9ce48aac863001212e7311891656db0c55906c3 /core/image | |
| parent | b18b0fdcb3f5f55ba298aa8245a95cf1626f2f75 (diff) | |
Fix typo
Diffstat (limited to 'core/image')
| -rw-r--r-- | core/image/jpeg/jpeg.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/image/jpeg/jpeg.odin b/core/image/jpeg/jpeg.odin index 3e0fae4c0..7261e5dd5 100644 --- a/core/image/jpeg/jpeg.odin +++ b/core/image/jpeg/jpeg.odin @@ -653,7 +653,7 @@ load_from_context :: proc(ctx: ^$C, options := Options{}, allocator := context.a .SOF5, // Differential sequential DCT .SOF6, // Differential progressive DCT .SOF7, // Differential lossless (sequential) - .SOF9:, // Extended sequential DCT, Arithmetic coding + .SOF9, // Extended sequential DCT, Arithmetic coding .SOF10, // Progressive DCT, Arithmetic coding .SOF11, // Lossless (sequential), Arithmetic coding .SOF13, // Differential sequential DCT, Arithmetic coding |