From 0237844e14eef09a7f023c916c6c006d17cebabb Mon Sep 17 00:00:00 2001 From: Clownacy Date: Thu, 23 Jan 2020 01:50:03 +0000 Subject: [PATCH] Actually, this fix doesn't seem right --- src/Organya.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Organya.cpp b/src/Organya.cpp index 5c6ec673..51070b16 100644 --- a/src/Organya.cpp +++ b/src/Organya.cpp @@ -514,11 +514,7 @@ BOOL OrgData::SetMusicInfo(MUSICINFO *mi, unsigned long flag) for (i = 0; i < MAXMELODY; i++) { info.tdata[i].freq = mi->tdata[i].freq; - #ifdef FIX_BUGS - info.tdata[i].pipi = mi->tdata[i].pipi; - #else - info.tdata[i].pipi = info.tdata[i].pipi; // Just sets info.tdata[i].pipi to itself - #endif + info.tdata[i].pipi = info.tdata[i].pipi; // Just sets info.tdata[i].pipi to itself (SETPIPI already sets pipi, so maybe this line shouldn't be here in the first place) } }