SkinInstaller: Fixed that 32-bit plugins were installed for 64-bit Rainmeter

This commit is contained in:
Birunthan Mohanathas 2012-06-16 19:43:49 +03:00
parent 07f49f79a4
commit 20d3910e91

View File

@ -32,10 +32,10 @@ CDialogInstall* CDialogInstall::c_Dialog = NULL;
inline bool IsWin32Build() inline bool IsWin32Build()
{ {
#ifdef _WIN32 #ifdef _WIN64
return true;
#else
return false; return false;
#else
return true;
#endif #endif
} }