void-packages/srcpkgs/bastet/patches/scorer-names-bugfix.patch
2023-01-04 22:37:59 +07:00

11 lines
438 B
Diff

--- a/Config.cpp
+++ b/Config.cpp
@@ -187,7 +187,7 @@ namespace Bastet{
for(int difficulty=0;difficulty<num_difficulties;++difficulty){
int i=0;
BOOST_FOREACH(const HighScore &hs, _hs[difficulty]){
- ofs2<<str(scorer % difficulty % i) << " = \"" << hs.Scorer << "\"\n";
+ ofs2<<str(scorer % difficulty % i) << " = " << hs.Scorer << "\n";
ofs2<<str(score % difficulty % i) << " = " << hs.Score <<"\n";
i++;
}