Corrected typo.

This commit is contained in:
2015-10-02 04:22:08 +01:00
parent 3364dcbd9e
commit 86f1e68e24
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2015-10-02 Natalia Portillo <claunia@claunia.com>
* Program.cs:
Corrected typo.
2015-10-02 Natalia Portillo <claunia@claunia.com> 2015-10-02 Natalia Portillo <claunia@claunia.com>
* CD+G.cs: * CD+G.cs:

View File

@@ -105,7 +105,7 @@ namespace SubChannelDecoder
else if(CheckQCRC(UnpackSubchannel(sectorBytes).q)) else if(CheckQCRC(UnpackSubchannel(sectorBytes).q))
{ {
Console.WriteLine("Subchannel is not interleaved."); Console.WriteLine("Subchannel is not interleaved.");
interleaved = true; interleaved = false;
} }
} }
@@ -335,7 +335,7 @@ namespace SubChannelDecoder
else if(CheckQCRC(UnpackSubchannel(sectorBytes).q)) else if(CheckQCRC(UnpackSubchannel(sectorBytes).q))
{ {
Console.WriteLine("Subchannel is not interleaved."); Console.WriteLine("Subchannel is not interleaved.");
interleaved = true; interleaved = false;
} }
} }