fix glide about box
This commit is contained in:
parent
662e3efa27
commit
87de53b202
|
@ -174,6 +174,10 @@ void FlushSettings ( void )
|
|||
|
||||
unsigned int GetSetting ( short SettingID )
|
||||
{
|
||||
if (g_PluginSettings.GetSetting == NULL)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
return g_PluginSettings.GetSetting(g_PluginSettings.handle,SettingID + g_PluginSettings.SettingStartRange);
|
||||
}
|
||||
|
||||
|
@ -189,6 +193,10 @@ const char * GetSettingSz ( short SettingID, char * Buffer, int BufferLen )
|
|||
|
||||
const char * GetSystemSettingSz ( short SettingID, char * Buffer, int BufferLen )
|
||||
{
|
||||
if (g_PluginSettings.GetSettingSz == NULL)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
return g_PluginSettings.GetSettingSz(g_PluginSettings.handle,SettingID,Buffer,BufferLen);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue