--- uae/src/ncurses.c 2018/04/24 16:39:51 1.1.1.2 +++ uae/src/ncurses.c 2018/04/24 16:42:00 1.1.1.3 @@ -484,6 +484,7 @@ int graphics_init(void) gfxvidinfo.rowbytes = gfxvidinfo.pixbytes * currprefs.gfx_width; gfxvidinfo.bufmem = (char *)calloc(gfxvidinfo.rowbytes, currprefs.gfx_height+1); gfxvidinfo.linemem = 0; + gfxvidinfo.emergmem = 0; gfxvidinfo.can_double = 0; switch (gfxvidinfo.pixbytes) { case 1: @@ -650,8 +651,16 @@ void LED(int on) { } -void write_log (const char *buf) +void write_log (const char *buf, ...) { } +int lockscr (void) +{ + return 1; +} + +void unlockscr (void) +{ +}