mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-12 07:07:02 +00:00
13 lines
304 B
C++
13 lines
304 B
C++
namespace Info {
|
|
static const char Profile[] = "Performance";
|
|
}
|
|
|
|
#if defined(DEBUGGER)
|
|
#error "bsnes: debugger not supported with performance profile."
|
|
#endif
|
|
|
|
#include <snes/alt/cpu/cpu.hpp>
|
|
#include <snes/alt/smp/smp.hpp>
|
|
#include <snes/alt/dsp/dsp.hpp>
|
|
#include <snes/alt/ppu-performance/ppu.hpp>
|