Moved debugging config options to HKCU\Software\Wine\Debug.
diff --git a/dlls/user/spy.c b/dlls/user/spy.c
index 60769b1..eb7e67d 100644
--- a/dlls/user/spy.c
+++ b/dlls/user/spy.c
@@ -2584,8 +2584,8 @@
if (!TRACE_ON(message)) return TRUE;
indent_tls_index = TlsAlloc();
- /* @@ Wine registry key: HKLM\Software\Wine\Wine\Config\Debug */
- if(!RegOpenKeyA(HKEY_LOCAL_MACHINE, "Software\\Wine\\Wine\\Config\\Debug", &hkey))
+ /* @@ Wine registry key: HKCU\Software\Wine\Debug */
+ if(!RegOpenKeyA(HKEY_CURRENT_USER, "Software\\Wine\\Debug", &hkey))
{
DWORD type, count = sizeof(buffer);