Skip to content

Commit

Permalink
CDVD: Fix unused qualifier warning
Browse files Browse the repository at this point in the history
  • Loading branch information
F0bes authored and refractionpcsx2 committed Jul 28, 2023
1 parent 6d2ba5c commit 5ba6e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/CDVD/IsoHasher.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class IsoHasher

static std::string_view GetTrackTypeString(u32 type);

const u32 GetTrackCount() const { return static_cast<u32>(m_tracks.size()); }
u32 GetTrackCount() const { return static_cast<u32>(m_tracks.size()); }
const Track& GetTrack(u32 n) const { return m_tracks.at(n); }
const std::vector<Track>& GetTracks() const { return m_tracks; }
bool IsCD() const { return m_is_cd; }
Expand Down

0 comments on commit 5ba6e57

Please sign in to comment.