mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-04-02 10:42:14 -04:00
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
24 lines
434 B
C++
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();
|
|
}
|