mirror of
https://github.com/reactos/wine.git
synced 2025-04-03 16:42:06 +00:00
dinput: Use BOOL type where appropriate.
This commit is contained in:
parent
27947d2662
commit
84fb23f476
@ -57,7 +57,7 @@ struct LinuxInputEffectImpl
|
|||||||
|
|
||||||
struct ff_effect effect; /* Effect data */
|
struct ff_effect effect; /* Effect data */
|
||||||
int gain; /* Effect gain */
|
int gain; /* Effect gain */
|
||||||
int first_axis_is_x;
|
BOOL first_axis_is_x;
|
||||||
int* fd; /* Parent device */
|
int* fd; /* Parent device */
|
||||||
struct list *entry; /* Entry into the parent's list of effects */
|
struct list *entry; /* Entry into the parent's list of effects */
|
||||||
};
|
};
|
||||||
|
@ -184,7 +184,7 @@ static void find_joydevs(void)
|
|||||||
char buf[MAX_PATH];
|
char buf[MAX_PATH];
|
||||||
struct JoyDev joydev = {0};
|
struct JoyDev joydev = {0};
|
||||||
int fd;
|
int fd;
|
||||||
int no_ff_check = 0;
|
BOOL no_ff_check = FALSE;
|
||||||
int j;
|
int j;
|
||||||
struct JoyDev *new_joydevs;
|
struct JoyDev *new_joydevs;
|
||||||
struct input_id device_id = {0};
|
struct input_id device_id = {0};
|
||||||
@ -194,7 +194,7 @@ static void find_joydevs(void)
|
|||||||
if ((fd = open(buf, O_RDWR)) == -1)
|
if ((fd = open(buf, O_RDWR)) == -1)
|
||||||
{
|
{
|
||||||
fd = open(buf, O_RDONLY);
|
fd = open(buf, O_RDONLY);
|
||||||
no_ff_check = 1;
|
no_ff_check = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fd == -1)
|
if (fd == -1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user