PDP11: Fix warning about ~0 not fitting in an uint16.
This commit is contained in:
parent
73df9b1c4e
commit
eb242da79e
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue