Fix some warnings

This commit is contained in:
negativeExponent
2020-10-25 08:31:41 +08:00
parent 2a317f27b3
commit 565f60c0f2
7 changed files with 15 additions and 18 deletions

View File

@@ -570,7 +570,7 @@ void FCEUI_CheatSearchBegin(void) {
}
static int INLINE CAbs(int x) {
static INLINE int CAbs(int x) {
if (x < 0)
return(0 - x);
return x;