I want to unactivate Cleartype (Antialiasing) in wine for MS Visio 2010.
I found here how I can do it:
https://wiki.winehq.org/Useful_Registry_Keys
So I have made the key: HCU/Software/wine/X11 Driver
And after I created the entry ClientSideAntiAliasWithCore in this key and put in there "N"
And I also created the entry ClientSideAntiAliasWithRender and put in there "N"
But now, here is the question:
Of which type should ClientSideAntiAliasWithCore and ClientSideAntiAliasWithRender be?
-REG_SZ ?
-REG_DWORD ?
-REG_BINARY ?
-REG_MULTI_SZ ?
-REG_EXPAND_SZ ?
Thank you.
[answered] Registry entry: Which Type should I choose?
[answered] Registry entry: Which Type should I choose?
Last edited by Opako on Wed Aug 19, 2020 4:05 pm, edited 1 time in total.
Re: Registry entry: Which Type should I choose?
From the same wiki page:
...
Here you'll find useful registry keys that cannot be changed in winecfg. You should edit the registry using regedit.
If a key or value does not exist, create it. All values are strings (REG_SZ) unless stated otherwise.
To create a new key if it does not exist:
...
Re: Registry entry: Which Type should I choose?
Thank you. I missed it.