From 249efce565f38f010a9c11f739ba918dd93adf5c Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Tue, 3 Dec 2024 15:40:37 -0800 Subject: [PATCH] Adds comments regarding init_cursor() purpose in initdsp.c --- src/initdsp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/initdsp.c b/src/initdsp.c index a363304..6a089df 100644 --- a/src/initdsp.c +++ b/src/initdsp.c @@ -98,6 +98,11 @@ extern int *Xdisplay; /* DAANGER -jarl nilsson 27-apr-92 */ /************************************************************************/ void init_cursor(void) { + /* init_cursor sets up any OS/hardware that is necessary + * for the rest of the display system to get a cursor displayed. + * For display subsystems like X11 or SDL there's nothing to do + * Originally this did work for memory mapped Sun display boards + */ } /************************************************************************/