MCPcopy Create free account
hub / github.com/TASEmulators/fceux / ESIFC_Name

Function ESIFC_Name

src/git.h:120–146  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118
119
120inline 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"

Callers 2

UpdateComboFamFunction · 0.85
InputConCallBFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected