Fixed gcc build issues

This commit is contained in:
Robert 2021-10-28 22:57:32 +02:00
parent 32a913a32c
commit b3a3a60bd0
3 changed files with 6 additions and 5 deletions

View file

@ -15,6 +15,7 @@ target_include_directories(yabgbe
target_link_libraries(yabgbe
SDL2
${CMAKE_DL_LIBS}
)
if(WIN32)

View file

@ -5,7 +5,7 @@
#ifndef NDEBUG
#ifndef NO_LOG
#define DBG_MSG(fmt, ...) if(!disablePrint) printf(fmt, __VA_ARGS__)
#define DBG_MSG(fmt, ...) if(!disablePrint) printf(fmt, ##__VA_ARGS__)
#else
#define DBG_MSG(fmt, ...) do {} while(0)
#endif

View file

@ -1,6 +1,6 @@
#pragma once
#include "util.hpp"
#include "../util.hpp"
// The memory bank controller (MBC) needs to map addresses targeted at rom, to get the appropriate data from the ROM
class IMBC