mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-04-02 10:42:14 -04:00
byuu says: Basically just a project rename, with s/bsnes/higan and the new icon from lowkee added in. It won't compile on Windows because I forgot to update the resource.rc file, and a path transform command isn't working on Windows. It was really just meant as a starting point, so that v091 WIPs can flow starting from .00 with the new name (it overshadows bsnes v091, so publicly speaking this "shouldn't exist" and will probably be deleted from Google Code when v092 is ready.)
17 lines
548 B
C++
Executable file
17 lines
548 B
C++
Executable file
#include <fc/interface/interface.hpp>
|
|
#include <sfc/interface/interface.hpp>
|
|
#include <gb/interface/interface.hpp>
|
|
#include <gba/interface/interface.hpp>
|
|
//#include <nds/interface/interface.hpp>
|
|
|
|
void Application::bootstrap() {
|
|
interface = new Interface;
|
|
|
|
emulator.append(new Famicom::Interface);
|
|
emulator.append(new SuperFamicom::Interface);
|
|
emulator.append(new GameBoy::Interface);
|
|
emulator.append(new GameBoyAdvance::Interface);
|
|
//emulator.append(new NintendoDS::Interface);
|
|
|
|
for(auto &system : emulator) system->bind = interface;
|
|
}
|