bsnes/higan/ngp/interface/neo-geo-pocket-color.cpp

12 lines
356 B
C++

auto NeoGeoPocketColorInterface::information() -> Information {
Information information;
information.manufacturer = "SNK";
information.name = "Neo Geo Pocket Color";
information.extension = "ngpc";
return information;
}
auto NeoGeoPocketColorInterface::load() -> bool {
return system.load(this, System::Model::NeoGeoPocketColor);
}