config path on WIN32
Status: Beta
Brought to you by:
greenwire
Hi, i had a uncommon path for my home(D:\<username>)
and common files(E:\Common Files) folders, that's why i
had to change the old GLOBAL_CONFIG_PATH and
USER_CONFIG_PATH values with:
static const std::string GLOBAL_CONFIG_PATH =
std::string(getenv("CommonProgramFiles")) + "\\wgui\\";
static const std::string USER_CONFIG_PATH =
std::string(getenv("AppData")) + "\\wgui\\";
I hope i helped you. :)
Logged In: YES
user_id=65937
Aha!
Those environment variables will work much better. I'll be
sure to make the change for the next release. I'm trying to
get unicode working right now though, so I'm unsure how far
away that will be.
Thanks!