mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
356 B
C++
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);
|
|
}
|