From 113329136e434e3da7891bd0c42865fcdf07047c Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 31 Oct 1999 01:37:02 +0000 Subject: [PATCH] ini variables do not like ; comments after them (they are not shell scripts). Fixed a typo in one of the names. --- wine.ini | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/wine.ini b/wine.ini index 731b1d5995..98d153cd32 100644 --- a/wine.ini +++ b/wine.ini @@ -129,20 +129,27 @@ Exclude=WM_SIZE;WM_TIMER; ; Paths must be given in /dir/dir/file.reg format. ; Wine will not understand dos file names here... -AltCurrentUserFile= ; alternate registry file name: HKCU -AltUserFile= ; alternate registry file name: HKU -AltLocalMachineFile= ; alternate registry file name: HKLM - +; alternate registry file name: HKCU +AltCurrentUserFile= +; alternate registry file name: HKU +AltUserFile= +; alternate registry file name: HKLM +AltLocalMachineFile= ;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false. ;Defaults are read all, write to Home and Alt ;Note: it is pointless to specify alt files and neither load nor write to them. - -LoadGlobalRegistryFiles=Y ; Global registries (stored in /etc) -LoadHomeRegistryFiles=Y ; Home registries (stored in ~user/.wine/) -LoadWindowsRegistryFiles=Y ; Windows registries in windows path, above -LoadAltRegistryFiles=Y ; Load above registries. -WritetoHomeRegitsryFiles=Y ; TRY to write all changes to home registries -WritetoAltRegistryFiles=Y ; TRY to write all changes to alt registries +; Global registries (stored in /etc) +LoadGlobalRegistryFiles=Y +; Home registries (stored in ~user/.wine/) +LoadHomeRegistryFiles=Y +; Windows registries in windows path, above +LoadWindowsRegistryFiles=Y +; Load above registries. +LoadAltRegistryFiles=Y +; TRY to write all changes to home registries +WritetoHomeRegistryFiles=Y +; TRY to write all changes to alt registries +WritetoAltRegistryFiles=Y [Tweak.Layout] ;; WineLook=xxx (supported styles are 'Win31'(default), 'Win95', 'Win98') -- 2.32.0.93.g670b81a890