Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions snesfilter/snesfilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
#include <stdlib.h>
#include <string.h>

#ifndef QT_CORE_LIB
#define QT_CORE_LIB
#endif
#include <QtWidgets>

#include <nall/config.hpp>
Expand Down
2 changes: 2 additions & 0 deletions snesreader/libjma/jma.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#include <vector>
#include <time.h>

#pragma GCC diagnostic ignored "-Wdeprecated"

namespace JMA
{
enum jma_errors { JMA_NO_CREATE, JMA_NO_MEM_ALLOC, JMA_NO_OPEN, JMA_BAD_FILE,
Expand Down
4 changes: 3 additions & 1 deletion snesreader/snesreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@
#include "fex/fex.h"
#include "libjma/jma.h"
extern "C" char* uncompressStream(int, int); //micro-bunzip

//
#ifndef QT_CORE_LIB
#define QT_CORE_LIB
#endif
#include <QtWidgets>

#include <nall/file.hpp>
Expand Down