mirror of
https://github.com/weiju/amiga-stuff
synced 2025-12-08 14:58:33 +00:00
requesters: file requester slider/button behavior
Added event handling for up/down buttons and slider movements file list structure now has a previous pointer for quicker backwards navigation
This commit is contained in:
@ -48,6 +48,7 @@ struct FileListEntry *scan_dir(const char *dirpath, int *num_entries)
|
||||
if (!cur_entry) result = cur_entry = tmp;
|
||||
else {
|
||||
cur_entry->next = tmp;
|
||||
tmp->prev = cur_entry;
|
||||
cur_entry = tmp;
|
||||
}
|
||||
n++;
|
||||
|
||||
Reference in New Issue
Block a user