Skip to content

Commit

Permalink
Logs the logical filename number when loading side mix files.
Browse files Browse the repository at this point in the history
  • Loading branch information
CCHyper committed Mar 16, 2023
1 parent 69ae52f commit 52f41b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/extensions/init/initext_hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,13 +531,13 @@ void Vinifera_Create_Main_Window(HINSTANCE hInstance, int nCmdShow, int width, i
*/
bool Vinifera_Prep_For_Side(SideType side)
{
DEBUG_INFO("Preparing Mixfiles for Side %02d.\n", side);
int sidenum = (side+1); // Logical side number.

DEBUG_INFO("Preparing Mixfiles for Side %02d (logical %02d).\n", side, sidenum);

MFCC *mix = nullptr;
char buffer[16];

int sidenum = (side+1); // Logical side number.

if (SideCachedMix) {
DEBUG_INFO(" Releasing %s\n", SideCachedMix->Filename);
delete SideCachedMix;
Expand Down

0 comments on commit 52f41b5

Please sign in to comment.