libvgm Player: Correctly report version number in codec field

CQTexperiment
Christopher Snowhill 2022-01-05 02:37:39 -08:00
parent 5b67735f12
commit 0e8f417e67
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ static std::string FCC2Str(UINT32 fcc)
PLR_SONG_INFO sInf;
player->GetSongInfo(sInf);
system = [NSString stringWithFormat:@"%s v%X.%X", FCC2Str(sInf.format).c_str(), sInf.fileVerMaj, sInf.fileVerMin];
system = [NSString stringWithFormat:@"%s v%X.%02X", FCC2Str(sInf.format).c_str(), sInf.fileVerMaj, sInf.fileVerMin];
mainPlr.UnloadFile();
DataLoader_Deinit(dLoad);