
The Legacy Cursor was removed from League of Legends in 2018, with League of Legends patch 8.13. When Was the Legacy Cursor Removed From League of Legends?

All you have to do is set the different cursor types to empty string and then make the SystemParametersInfo call as usual. If you look at HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Schemes you will notice that “Windows Default” is defined as “,” or in other words no pointers to actual cursors! To call it: SystemParametersInfo(SPI_SETCURSORS, 0, 0, SPIF_UPDATEINIFILE | SPIF_SENDCHANGE) Public static extern bool SystemParametersInfo(uint uiAction, uint uiParam, uint pvParam, uint fWinIni) MsgBox Error Level: %ErrorLevel% `nLast error: %A_LastError%`nresult: %result% Result := DllCall("SystemParametersInfo", "UInt", SPI_SETCURSORS, "UInt", 0, "UInt", 0, "UInt", '0')

In AutoHotKey Script: SPI_SETCURSORS := 0x57 To try this out let’s go ahead and change HKCU\Control Panel\Cursors\Arrow to C:\WINDOWS\Cursors\appstar3.ani (assuming you have this icon) and then make a call to SystemParametersInfo. This is where the SystemParametersInfo call comes in. You have to tell windows to load the new cursor.

You are correct, just updating a key – HKCU\Control Panel\Cursors\Arrow, for instance – isn’t enough. If you already changed the path to one of the cursor type in HKCU\Control Panel\Cursors and realized that it did not do anything. The registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Schemes contains the system cursor schemes (i.e. The registry key HKEY_CURRENT_USER\Control Panel\Cursors contains the user defined cursor schemes (i.e.

There are three main registry keys that come into play. If you want to change the default Mouse Cursor theme:
