Started fixing RDS and adding more group types

This commit is contained in:
furrtek
2016-05-28 01:59:13 +02:00
parent 9c3e3bddad
commit ceced96673
5 changed files with 147 additions and 103 deletions
+3 -3
View File
@@ -163,9 +163,9 @@ void XylosView::upd_message() {
ccirmessage[18] = '0';
ccirmessage[19] = '0';
// Stuffing
for (c=1; c<20; c++) {
if (ccirmessage[c] == ccirmessage[c-1]) ccirmessage[c] = 'E';
// Repeats elimination
for (c = 1; c < 20; c++) {
if (ccirmessage[c] == ccirmessage[c - 1]) ccirmessage[c] = 'E';
}
ccirmessage[20] = 0;