diff options
| author | Filoppi <filippotarpini@hotmail.it> | 2021-05-09 13:28:04 +0300 |
|---|---|---|
| committer | Filoppi <filippotarpini@hotmail.it> | 2021-05-27 10:31:12 +0300 |
| commit | 3c7c2dfaa10fc837f75d7e71d71b483db343dee3 (patch) | |
| tree | 516ec8f5bb1a145ac6b244d97453d22b55e9a596 /Source/Android | |
| parent | ff08b85740f52394433ebc2a49c22b324c858dc7 (diff) | |
Implement Cursor Locking and new input focus checks for it
Diffstat (limited to 'Source/Android')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 1b698d2a17..3e9ff48b67 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -151,6 +151,12 @@ bool Host_RendererHasFocus() return true; } +bool Host_RendererHasFullFocus() +{ + // Mouse cursor locking actually exists in Android but we don't implement (nor need) that + return true; +} + bool Host_RendererIsFullscreen() { return false; |
