diff --git a/src/Fade.cpp b/src/Fade.cpp index 9c5986bc..67e15e6b 100644 --- a/src/Fade.cpp +++ b/src/Fade.cpp @@ -76,7 +76,7 @@ void StartFadeIn(signed char dir) } } - x = x; // What + x = x; // x is assigned to itself. Thanks, Pixel. (Most likely, the original code wasn't written the exact same way) } void ProcFade() diff --git a/src/Organya.cpp b/src/Organya.cpp index 24bb6c3c..b7e8fc17 100644 --- a/src/Organya.cpp +++ b/src/Organya.cpp @@ -521,7 +521,7 @@ BOOL OrgData::SetMusicInfo(MUSICINFO *mi, unsigned long flag) for (i = 0; i < MAXMELODY; i++) { info.tdata[i].freq = mi->tdata[i].freq; - info.tdata[i].pipi = info.tdata[i].pipi; + info.tdata[i].pipi = info.tdata[i].pipi; // info.tdata[i].pipi is assigned to itself. Thanks, Pixel. (Most likely, the original code wasn't written the exact same way) } }