Skip to content

Commit

Permalink
Merge pull request #961 from UltraStar-Deluxe/base-not-bass-typo
Browse files Browse the repository at this point in the history
typo: Bass is not the same as Base in the AudioPlayback context
  • Loading branch information
basisbit authored Feb 18, 2025
2 parents a895e86 + 70a7449 commit 40683a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/media/UAudioPlaybackBase.pas
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ function TAudioPlaybackBase.OpenStream(const Filename: IPath): TAudioPlaybackStr
begin
Result := nil;

//Log.LogStatus('Loading Sound: "' + Filename + '"', 'TAudioPlayback_Bass.OpenStream');
//Log.LogStatus('Loading Sound: "' + Filename + '"', 'TAudioPlayback_Base.OpenStream');

DecodeStream := OpenDecodeStream(Filename);
if (not assigned(DecodeStream)) then
begin
Log.LogStatus('Could not open "' + Filename.ToNative + '"', 'TAudioPlayback_Bass.OpenStream');
Log.LogStatus('Could not open "' + Filename.ToNative + '"', 'TAudioPlayback_Base.OpenStream');
Exit;
end;

Expand Down

0 comments on commit 40683a8

Please sign in to comment.