mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
for win32, look for dicts locally.
This commit is contained in:
parent
a29ab639fc
commit
fa1f65283f
1 changed files with 4 additions and 0 deletions
|
@ -628,7 +628,11 @@ getDictDir( wchar_t* buf )
|
|||
{
|
||||
/* BOOL found = SHGetKnownFolderPath(HWND,LPWSTR,int,BOOL); */
|
||||
// temporary hack until I figure SHGetKnownFolderPath out
|
||||
#ifdef _WIN32_WCE
|
||||
wsprintf( buf, L"\\Program Files\\Crosswords" );
|
||||
#else
|
||||
wsprintf( buf, L"." );
|
||||
#endif
|
||||
return XP_TRUE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue