diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-12-25 03:08:10 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-12-25 03:08:10 +0100 |
| commit | ae4a7b241a033627ed136b2ef66922034cfbeae1 (patch) | |
| tree | e8f045d51a36c2f9c24b63d962bcf84baebdc3c9 /tis100-curses.c | |
| parent | f2ada47e6be185cc31c475c996c4ccf6735f7bb0 (diff) | |
| download | tis100-ae4a7b241a033627ed136b2ef66922034cfbeae1.tar.gz tis100-ae4a7b241a033627ed136b2ef66922034cfbeae1.zip | |
Add more fixes for game compatibility
Diffstat (limited to 'tis100-curses.c')
| -rw-r--r-- | tis100-curses.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tis100-curses.c b/tis100-curses.c index 2a34a0a..ec1eb2d 100644 --- a/tis100-curses.c +++ b/tis100-curses.c @@ -452,7 +452,7 @@ reset(int ifd, int argc, const char **argv, bool watch) tis_load(&tis, argv); if (watch) { - if (inotify_add_watch(ifd, argv[1], IN_MODIFY) < 0) + if (inotify_add_watch(ifd, tis.asm_filepath, IN_MODIFY) < 0) die("inotify_add_watch '%s':", argv[1]); } |
