Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using int for get_ksu_state is not effective. Instead we should use boolean value instead because its more easy and simple things up. get_ksu_state() will return true if enable_kernelsu greater or equal than 1. and return false if enable_kernelsu less than 1. previously: if (get_ksu_state() < 1) now: if (!get_ksu_state()) Signed-off-by: rsuntk <[email protected]>
- Loading branch information