SNESTilesKitten
SNESTilesKitten copied to clipboard
Missing bitstream.h and bitstream.c in Quintet code
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.
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
This should be fixed now