/** * Adjusts the quantity by which to increase/decrease a TextList value. * @return, delta */int State::stepDelta() // protected/static.{ if ((SDL_GetModState() & KMOD_CTRL) == 0) return 1; return 10;}