Lines Matching refs:cursor
171 int cursor = 0; in NitroMain() local
180 if (++cursor >= explorer->entry_count) in NitroMain()
182 cursor -= explorer->entry_count; in NitroMain()
188 if (--cursor < 0) in NitroMain()
190 cursor += explorer->entry_count; in NitroMain()
197 if (cursor < explorer->entry_count) in NitroMain()
199 if ((explorer->entry[cursor].attributes & FS_ATTRIBUTE_IS_DIRECTORY) != 0) in NitroMain()
201 CommandCD(explorer, explorer->entry[cursor].longname); in NitroMain()
202 cursor = 0; in NitroMain()
210 … (void)STD_TSPrintf(path, "%s/%s", explorer->current, explorer->entry[cursor].longname); in NitroMain()
224 (explorer->entry[cursor].filesize > 0x7FFFFFFFUL) ? in NitroMain()
283 cursor = 0; in NitroMain()
303 BOOL focus = (i == cursor); in NitroMain()