mirror of
				https://github.com/chibicitiberiu/rainmeter-studio.git
				synced 2024-02-24 04:33:31 +00:00 
			
		
		
		
	NowPlaying plugin: Fix measure name case sensitivity comparing in PlayerName option
This commit is contained in:
		@@ -88,7 +88,7 @@ PLUGIN_EXPORT void Reload(void* data, void* rm, double* maxValue)
 | 
				
			|||||||
				for ( ; iter != g_ParentMeasures.end(); ++iter)
 | 
									for ( ; iter != g_ParentMeasures.end(); ++iter)
 | 
				
			||||||
				{
 | 
									{
 | 
				
			||||||
					if (skin == (*iter)->skin &&
 | 
										if (skin == (*iter)->skin &&
 | 
				
			||||||
						wcsncmp(str, (*iter)->ownerName, len) == 0)
 | 
											_wcsnicmp(str, (*iter)->ownerName, len) == 0)
 | 
				
			||||||
					{
 | 
										{
 | 
				
			||||||
						// Use same ParentMeasure as referenced section
 | 
											// Use same ParentMeasure as referenced section
 | 
				
			||||||
						measure->parent = (*iter);
 | 
											measure->parent = (*iter);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user