diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-23 13:48:07 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-01-23 13:48:07 -0500 |
commit | 68b77c7a1cde7344702cf1d162e0124498a6b616 (patch) | |
tree | 8e0fbc0e6dddaac12c2c37b59d54b12892439ad5 /ted.h | |
parent | 7448aa490fb843089e5785d5a80f8a07ee50f93a (diff) |
got rid of dyn string array - that was unnecessarily complicated
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ typedef struct { Rect bounds; u32 n_entries; FileEntry *entries; - char *cwd; // a dynamic null-terminated array of chars representing the current directory + char cwd[TED_PATH_MAX]; bool submitted; // set to true if the line buffer was just submitted this frame. } FileSelector; |