lsnes/include/lsnes.hpp
Ilari Liusvaara a6f4d2dae1 Support multiple cores at once
Yes, this can really be built to have both bsnes and gambatte cores at
once (even if the result can't be distributed).
2013-01-06 23:06:08 +02:00

19 lines
405 B
C++

#ifndef lsnes__hpp__included__
#define lsnes__hpp__included__
#include <iostream>
#define STILL_HERE do { std::cerr << "Still here at file " << __FILE__ << " line " << __LINE__ << "." << std::endl; } \
while(0)
#define DEBUGGER
#ifdef BSNES_IS_COMPAT
#define PROFILE_COMPATIBILITY
#else
#define PROFILE_ACCURACY
#endif
extern std::string lsnes_version;
extern std::string lsnes_git_revision;
#endif