1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-04 15:43:04 +00:00

Rename _curXXX structures to curXXX to avoid leading underscore (#376)

This commit is contained in:
Nick Briggs
2021-03-29 12:34:32 -07:00
committed by GitHub
parent 36ccd9a5f5
commit 01a8948a7d
3 changed files with 6 additions and 7 deletions

View File

@@ -17,8 +17,8 @@
#include "dbprint.h"
#include "devif.h"
MouseInterfaceRec _curmouse;
MouseInterface currentmouse = &_curmouse;
MouseInterfaceRec curmouse;
MouseInterface currentmouse = &curmouse;
#ifdef DOS
#include <dos.h>