SNESTilesKitten icon indicating copy to clipboard operation
SNESTilesKitten copied to clipboard

Missing bitstream.h and bitstream.c in Quintet code

Open lubosz opened this issue 5 years ago • 2 comments

I suppose you forgot to commit a file. The build of the quinlet compression shows that there should be a bitstream.c and h:

QT       += core gui

TARGET = quintetcompression
TEMPLATE = lib
CONFIG += plugin

DESTDIR = ../../plugins

SOURCES += Global.cpp \
           Comp.cpp \
           ../../lowlevelstuff/src/compressions/quintet1/quintet1_compression.c \
           bitstream.c \
           quintetcompression.cpp

HEADERS += Global.h \
           Comp.h \
           ../../lowlevelstuff/src/compressions/quintet1/quintet1_compression.h \
           quintetcompression.h \
           bitstream.h

INCLUDEPATH += ../../lowlevelstuff/src/compressions/quintet1/

Something that should have been commited with 9bc5721d00f02d8b5d501611dd0092bb9c16df9b

Only way to work around this is to not build the Quintlet module.

lubosz avatar Dec 20 '20 23:12 lubosz

Hooo right, I forget about that, I not sure how I want to go with these files (they are from another project). I guess I could simply add them

Skarsnik avatar Dec 21 '20 20:12 Skarsnik

This should be fixed now

Skarsnik avatar Dec 22 '20 11:12 Skarsnik