lsnes/include/interface/controller.hpp
Ilari Liusvaara 53b75adcf2 Automatically build index triple and legacy-pcid maps
All cores build these the same way, so make the code common.
2013-07-20 14:35:16 +03:00

15 lines
327 B
C++

#ifndef _interface__controller__hpp__included__
#define _interface__controller__hpp__included__
#include "library/controller-data.hpp"
struct controller_set
{
struct port_index_map portindex();
std::vector<port_type*> ports;
std::vector<std::pair<unsigned, unsigned>> logical_map;
};
extern uint32_t magic_flags;
#endif