mirror of
https://github.com/open-simh/simh.git
synced 2026-01-14 07:40:35 +00:00
PDP11: Fix warning about ~0 not fitting in an uint16.
This commit is contained in:
parent
73df9b1c4e
commit
eb242da79e
@ -46,7 +46,7 @@ t_stat daz_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cpt
|
||||
const char *daz_description (DEVICE *dptr);
|
||||
|
||||
static uint16 devadd = 0;
|
||||
static uint16 buttons[4] = { ~0, ~0, ~0, ~0 };
|
||||
static uint16 buttons[4] = { 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF };
|
||||
|
||||
#define IOLN_DAZ 4
|
||||
DIB daz_dib = {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user