From b1fa817721fc53af709d68258bcbc976559fa17f Mon Sep 17 00:00:00 2001 From: alexis-puska Date: Sat, 2 Jul 2016 16:39:51 +0200 Subject: fix compilation error --- libpcsxcore/plugins.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libpcsxcore') diff --git a/libpcsxcore/plugins.c b/libpcsxcore/plugins.c index 74b1925..6f5852b 100644 --- a/libpcsxcore/plugins.c +++ b/libpcsxcore/plugins.c @@ -505,7 +505,7 @@ void initBufForRequest(int padIndex, char value){ //case CMD_READ_DATA_AND_VIBRATE : // break; case CMD_CONFIG_MODE : - if(pad[padIndex].configMode == TRUE){ + if(pad[padIndex].configMode == 1){ buf[0] = 0xF3; buf[1] = 0x53; } @@ -558,9 +558,9 @@ void reqIndex2Treatment(int padIndex, char value){ case CMD_CONFIG_MODE : //0x43 if(value == 0){ - pad[padIndex].configMode = FALSE; + pad[padIndex].configMode = 0; }else{ - pad->configMode = TRUE; + pad->configMode = 1; } break; case CMD_SET_MODE_AND_LOCK : -- cgit v1.2.3