Added logic to make Qt GUI search for $HOMEPATH in the event that $HOME is not defined (for Windows).
This commit is contained in:
parent
5d0c9b2225
commit
15b983fc76
|
@ -155,7 +155,16 @@ static void
|
||||||
GetBaseDirectory(std::string &dir)
|
GetBaseDirectory(std::string &dir)
|
||||||
{
|
{
|
||||||
char *home = getenv("HOME");
|
char *home = getenv("HOME");
|
||||||
if(home) {
|
|
||||||
|
#ifdef WIN32
|
||||||
|
if ( home == NULL )
|
||||||
|
{
|
||||||
|
home = getenv("HOMEPATH");
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
if (home)
|
||||||
|
{
|
||||||
dir = std::string(home) + "/.fceux";
|
dir = std::string(home) + "/.fceux";
|
||||||
} else {
|
} else {
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
|
|
Loading…
Reference in New Issue