Skip to content

Commit

Permalink
[TouchDrvCSTXXX] Fixed begin faile return value
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisxhe committed Dec 30, 2024
1 parent d267eb2 commit 488bba9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/TouchDrvCSTXXX.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class TouchDrvCSTXXX : public TouchDrvInterface
}
if (!drv) {
__touch_type = TouchDrv_UNKOWN;
return true;
return false;
}
return drv != NULL;
}
Expand Down Expand Up @@ -246,7 +246,7 @@ class TouchDrvCSTXXX : public TouchDrvInterface
}
if (!drv) {
__touch_type = TouchDrv_UNKOWN;
return true;
return false;
}
return drv != NULL;
}
Expand Down Expand Up @@ -291,7 +291,7 @@ class TouchDrvCSTXXX : public TouchDrvInterface
}
if (!drv) {
__touch_type = TouchDrv_UNKOWN;
return true;
return false;
}
return drv != NULL;
}
Expand Down Expand Up @@ -347,7 +347,7 @@ class TouchDrvCSTXXX : public TouchDrvInterface
}
if (!drv) {
__touch_type = TouchDrv_UNKOWN;
return true;
return false;
}
return drv != NULL;
}
Expand Down

0 comments on commit 488bba9

Please sign in to comment.