mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-04-17 16:31:55 +00:00
Renamed IsWindowVisisble to the correct IsWindowVisible.
This commit is contained in:
parent
a122fcd239
commit
87683d533e
|
@ -809,7 +809,7 @@ namespace OpenTK.Platform.Windows
|
|||
#endregion
|
||||
|
||||
[DllImport("user32.dll")]
|
||||
public static extern bool IsWindowVisisble(IntPtr intPtr);
|
||||
public static extern bool IsWindowVisible(IntPtr intPtr);
|
||||
|
||||
#endregion
|
||||
|
||||
|
|
|
@ -718,7 +718,7 @@ namespace OpenTK.Platform.Windows
|
|||
{
|
||||
get
|
||||
{
|
||||
return Functions.IsWindowVisisble(window.WindowHandle);
|
||||
return Functions.IsWindowVisible(window.WindowHandle);
|
||||
}
|
||||
set
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue