Skip to content

Commit

Permalink
Move declarations closer to usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
claunia committed Oct 5, 2023
1 parent 85628a9 commit 11131ce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions CD/PMA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,14 @@ public static string Prettify(CDPMA? CDPMAResponse)
sb.AppendFormat(Localization.Reserved2_equals_0_X8, response.Reserved2).AppendLine();
#endif

List<string> tracks;

foreach(CDPMADescriptors descriptor in response.PMADescriptors)
{
#if DEBUG
if(descriptor.Reserved != 0)
sb.AppendFormat(Localization.Reserved_equals_0_X2, descriptor.Reserved).AppendLine();
#endif

List<string> tracks;
switch(descriptor.ADR)
{
case 1:
Expand Down

0 comments on commit 11131ce

Please sign in to comment.