From: <man...@us...> - 2015-03-08 12:40:21
|
Revision: 4838 http://sourceforge.net/p/modplug/code/4838 Author: manxorist Date: 2015-03-08 12:40:08 +0000 (Sun, 08 Mar 2015) Log Message: ----------- [Ref] Silence a 64bit warning. Modified Paths: -------------- trunk/OpenMPT/mptrack/Vstplug.h trunk/OpenMPT/soundlib/plugins/PluginManager.cpp Modified: trunk/OpenMPT/mptrack/Vstplug.h =================================================================== --- trunk/OpenMPT/mptrack/Vstplug.h 2015-03-08 11:12:40 UTC (rev 4837) +++ trunk/OpenMPT/mptrack/Vstplug.h 2015-03-08 12:40:08 UTC (rev 4838) @@ -394,7 +394,7 @@ public: static char s_szHostProductString[64]; static char s_szHostVendorString[64]; - static VstIntPtr s_nHostVendorVersion; + static VstInt32 s_nHostVendorVersion; #else // NO_VST public: Modified: trunk/OpenMPT/soundlib/plugins/PluginManager.cpp =================================================================== --- trunk/OpenMPT/soundlib/plugins/PluginManager.cpp 2015-03-08 11:12:40 UTC (rev 4837) +++ trunk/OpenMPT/soundlib/plugins/PluginManager.cpp 2015-03-08 12:40:08 UTC (rev 4838) @@ -33,7 +33,7 @@ char CVstPluginManager::s_szHostProductString[64] = "OpenMPT"; char CVstPluginManager::s_szHostVendorString[64] = "OpenMPT project"; -VstIntPtr CVstPluginManager::s_nHostVendorVersion = MptVersion::num; +VstInt32 CVstPluginManager::s_nHostVendorVersion = MptVersion::num; typedef AEffect * (VSTCALLBACK * PVSTPLUGENTRY)(audioMasterCallback); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |