Enable more compiler warnings and treat them as errors.

This commit is contained in:
Brian Phlipot
2023-02-02 11:54:17 -08:00
committed by teejusb
parent f8f6f12999
commit 4a6b1a743c
141 changed files with 625 additions and 757 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ bool LyricsLoader::LoadFromLRCFile(const RString& sPath, Song& out)
if( sValueName.EqualsNoCase("COLOUR") || sValueName.EqualsNoCase("COLOR") )
{
// set color var here for this segment
int r, g, b;
unsigned int r, g, b;
int result = sscanf( sValueData.c_str(), "0x%2x%2x%2x", &r, &g, &b );
// According to the Dance With Intensity readme, one can set up to
// ten colors in a line and access them via "{cX}", where X is 0-9.