diff options
-rw-r--r-- | src/d_iwad.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/d_iwad.c b/src/d_iwad.c index 8794e9be..d1c2f0bf 100644 --- a/src/d_iwad.c +++ b/src/d_iwad.c @@ -487,7 +487,14 @@ static void BuildIWADDirList(void) AddDoomWadPath(); -#if defined(_WIN32) && !defined(_WIN32_WCE) +#if defined(_WIN32_WCE) + + // Windows CE locations: + + AddIWADDir("\\Storage Card"); + AddIWADDir(getenv("HOME")); + +#elif defined(_WIN32) // Search the registry and find where IWADs have been installed. |