HomeSort by relevance Sort by last modified time
    Searched full:history_line (Results 1 - 2 of 2) sorted by null

  /external/quake/quake/src/QW/client/
keys.c 38 int history_line=0; variable
231 history_line = edit_line;
257 history_line = (history_line - 1) & 31;
258 } while (history_line != edit_line
259 && !key_lines[history_line][1]);
260 if (history_line == edit_line)
261 history_line = (edit_line+1)&31;
262 Q_strcpy(key_lines[edit_line], key_lines[history_line]);
269 if (history_line == edit_line) return;
    [all...]
  /external/quake/quake/src/WinQuake/
keys.cpp 36 int history_line=0; variable
169 history_line = edit_line;
205 history_line = (history_line - 1) & 31;
206 } while (history_line != edit_line
207 && !key_lines[history_line][1]);
208 if (history_line == edit_line)
209 history_line = (edit_line+1)&31;
210 Q_strcpy(key_lines[edit_line], key_lines[history_line]);
217 if (history_line == edit_line) return
    [all...]

Completed in 856 milliseconds