diff options
Diffstat (limited to 'native/src/defines.h')
-rw-r--r-- | native/src/defines.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/native/src/defines.h b/native/src/defines.h index 55469a788..6c619d1ab 100644 --- a/native/src/defines.h +++ b/native/src/defines.h @@ -165,6 +165,8 @@ static void dumpWord(const unsigned short* word, const int length) { #define KEYCODE_SPACE ' ' +#define CALIBRATE_SCORE_BY_TOUCH_COORDINATES false + #define SUGGEST_WORDS_WITH_MISSING_CHARACTER true #define SUGGEST_WORDS_WITH_MISSING_SPACE_CHARACTER true #define SUGGEST_WORDS_WITH_EXCESSIVE_CHARACTER true @@ -204,4 +206,7 @@ static void dumpWord(const unsigned short* word, const int length) { #define min(a,b) ((a)<(b)?(a):(b)) #define max(a,b) ((a)>(b)?(a):(b)) +// The ratio of neutral area radius to sweet spot radius. +#define NEUTRAL_AREA_RADIUS_RATIO 1.3f + #endif // LATINIME_DEFINES_H |