mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Implement Cursor Locking and new input focus checks for it
This commit is contained in:
parent
ff08b85740
commit
3c7c2dfaa1
25 changed files with 400 additions and 15 deletions
|
@ -98,6 +98,12 @@ bool Host_RendererHasFocus()
|
|||
return s_platform->IsWindowFocused();
|
||||
}
|
||||
|
||||
bool Host_RendererHasFullFocus()
|
||||
{
|
||||
// Mouse capturing isn't implemented
|
||||
return Host_RendererHasFocus();
|
||||
}
|
||||
|
||||
bool Host_RendererIsFullscreen()
|
||||
{
|
||||
return s_platform->IsWindowFullscreen();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue