mirror of https://github.com/bsnes-emu/bsnes.git
22 lines
577 B
C++
22 lines
577 B
C++
#include "higan.hpp"
|
|
unique_pointer<Video> video;
|
|
unique_pointer<Audio> audio;
|
|
unique_pointer<Input> input;
|
|
Emulator::Interface* emulator = nullptr;
|
|
|
|
auto locate(string name) -> string {
|
|
string location = {Path::program(), name};
|
|
if(inode::exists(location)) return location;
|
|
|
|
directory::create({Path::userData(), "higan/"});
|
|
return {Path::userData(), "higan/", name};
|
|
}
|
|
|
|
#include <nall/main.hpp>
|
|
auto nall::main(vector<string> arguments) -> void {
|
|
Application::setName("higan");
|
|
Application::setScreenSaver(false);
|
|
new Program(arguments);
|
|
Application::run();
|
|
}
|