mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
NowPlaying.dll: Fixed incorrect display of types NUMBER and YEAR in tooltips
This commit is contained in:
parent
8f69bcbbea
commit
775d5c2a39
@ -425,6 +425,14 @@ PLUGIN_EXPORT LPCWSTR GetString(void* data)
|
||||
case MEASURE_REPEAT:
|
||||
_itow_s((int)player->GetRepeat(), buffer, 10);
|
||||
return buffer;
|
||||
|
||||
case MEASURE_NUMBER:
|
||||
_itow_s(player->GetNumber(), buffer, 10);
|
||||
return buffer;
|
||||
|
||||
case MEASURE_YEAR:
|
||||
_itow_s(player->GetYear(), buffer, 10);
|
||||
return buffer;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user