Commit 88cb3351 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Move TWEAK_Init from USER to GDIInit.

parent 7d5fd8dc
......@@ -161,9 +161,12 @@ BOOL32 WINAPI MAIN_GdiInit(HINSTANCE32 hinstDLL, DWORD fdwReason, LPVOID lpvRese
LocalInit( GDI_HeapSel, 0, GDI_HEAP_SIZE-1 );
}
if (!TWEAK_Init()) return FALSE;
/* GDI initialisation */
if(!GDI_Init()) return FALSE;
/* PSDRV initialization */
if(!PSDRV_Init()) return FALSE;
......@@ -193,9 +196,6 @@ BOOL32 WINAPI MAIN_UserInit(HINSTANCE32 hinstDLL, DWORD fdwReason, LPVOID lpvRes
LocalInit( USER_HeapSel, 0, 0xffff );
}
/* Initialize Wine tweaks */
if (!TWEAK_Init()) return FALSE;
/* Global atom table initialisation */
if (!ATOM_Init( USER_HeapSel )) return FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment