MCPcopy Create free account
hub / github.com/Aloshi/EmulationStation / setLetterID

Method setLetterID

src/components/GuiFastSelect.cpp:131–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

129}
130
131void GuiFastSelect::setLetterID(int id)
132{
133 while(id < 0)
134 id += LETTERS.length();
135 while(id >= (int)LETTERS.length())
136 id -= LETTERS.length();
137
138 mLetterID = (size_t)id;
139}
140
141void GuiFastSelect::setListPos()
142{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected