diff options
| author | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-04 18:36:51 +0300 |
|---|---|---|
| committer | Konstantin Kirik (snegovick) <snegovick@uprojects.org> | 2025-12-04 18:36:51 +0300 |
| commit | 81aba5a90629df36627242431f07c8e6324f48e3 (patch) | |
| tree | b839d2559b01ac0b4e583f6234ebdb0e53713661 /emu/port/main.c | |
| parent | af3987f8d4ec692e102f5a376657651f2d698616 (diff) | |
Fix issue with multiple definitions of coherence, disable coherence call because its implementation is empty anyway. I failed to identify how to properly initialize coherence to leave call to it in place.
Diffstat (limited to 'emu/port/main.c')
| -rw-r--r-- | emu/port/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emu/port/main.c b/emu/port/main.c index 1d4b0e47..3d0f93bd 100644 --- a/emu/port/main.c +++ b/emu/port/main.c @@ -6,6 +6,7 @@ #include "draw.h" #include "version.h" +void (*coherence)(void) = nil; int rebootargc = 0; char** rebootargv; static char *imod = "/dis/emuinit.dis"; |
