| 118 | |
| 119 | |
| 120 | inline const char* ESIFC_Name(ESIFC esifc) |
| 121 | { |
| 122 | static const char * const names[] = |
| 123 | { |
| 124 | "<none>", |
| 125 | "Arkanoid Paddle", |
| 126 | "Hyper Shot gun", |
| 127 | "4-Player Adapter", |
| 128 | "Family Keyboard", |
| 129 | "Subor Keyboard", |
| 130 | "PEC586 Keyboard", |
| 131 | "HyperShot Pads", |
| 132 | "Mahjong", |
| 133 | "Quiz King Buzzers", |
| 134 | "Family Trainer A", |
| 135 | "Family Trainer B", |
| 136 | "Oeka Kids Tablet", |
| 137 | "Barcode World", |
| 138 | "Top Rider", |
| 139 | "Famicom Network Controller", |
| 140 | "Hori 4-Player Adapter" |
| 141 | }; |
| 142 | |
| 143 | if(esifc >= SIFC_NONE && esifc <= SIFC_COUNT) |
| 144 | return names[esifc]; |
| 145 | else return "<invalid ESIFC>"; |
| 146 | } |
| 147 | |
| 148 | |
| 149 | #include "utils/md5.h" |
no outgoing calls
no test coverage detected