bsnes/higan/target-bsnes/program/program.cpp
Tim Allen 6078cdacbb Update to v106r22 release.
byuu says:

Changelog:

  - created new bsnes target (it currently does nothing)
  - Super Famicom: fixed BS Memory pack support in the MCC emulation
  - icarus: fixed manifest-free support for BS Memory flash-based
    cartridges
  - icarus: database improvements
2018-05-18 15:21:22 +10:00

24 lines
434 B
C++

#include "../bsnes.hpp"
#include <sfc/interface/interface.hpp>
#include <gb/interface/interface.hpp>
unique_pointer<Program> program;
Program::Program(string_vector args) {
program = this;
Emulator::platform = this;
new Presentation;
presentation->setVisible();
new AboutWindow;
Application::onMain({&Program::main, this});
}
auto Program::main() -> void {
}
auto Program::quit() -> void {
Application::quit();
}