Define LIBRETRO macro when building core, skip swap chain

This commit is contained in:
Connor McLaughlin
2020-07-10 14:01:48 +10:00
parent 69f3128b07
commit c01854e9d1
4 changed files with 65 additions and 14 deletions

View File

@ -1,5 +1,6 @@
#include "namco_guncon.h"
#include "common/assert.h"
#include "common/log.h"
#include "common/state_wrapper.h"
#include "gpu.h"
#include "host_display.h"
@ -7,6 +8,7 @@
#include "resources.h"
#include "system.h"
#include <array>
Log_SetChannel(NamcoGunCon);
NamcoGunCon::NamcoGunCon(System* system) : m_system(system) {}