| 1107 | COMMAND(menuselectiondescbgcolor, "ssss"); |
| 1108 | |
| 1109 | static bool iskeypressed(int key) |
| 1110 | { |
| 1111 | int numkeys = 0; |
| 1112 | Uint8 const* state = SDL_GetKeyboardState(&numkeys); |
| 1113 | return key < numkeys && state[key] != 0; |
| 1114 | } |
| 1115 | |
| 1116 | void menusay(const char *text) |
| 1117 | { |