summaryrefslogtreecommitdiff
path: root/core/fxcodec/gif/cfx_lzwdecompressor.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcodec/gif/cfx_lzwdecompressor.h')
-rw-r--r--core/fxcodec/gif/cfx_lzwdecompressor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcodec/gif/cfx_lzwdecompressor.h b/core/fxcodec/gif/cfx_lzwdecompressor.h
index f4df065e34..d3ec588de1 100644
--- a/core/fxcodec/gif/cfx_lzwdecompressor.h
+++ b/core/fxcodec/gif/cfx_lzwdecompressor.h
@@ -14,10 +14,10 @@
class CFX_LZWDecompressor {
public:
- typedef struct {
+ struct CodeEntry {
uint16_t prefix;
uint8_t suffix;
- } CodeEntry;
+ };
// Returns nullptr on error
static std::unique_ptr<CFX_LZWDecompressor> Create(uint8_t color_exp,