diff options
author | 2024-01-26 01:10:37 +1100 | |
---|---|---|
committer | 2024-01-26 01:10:37 +1100 | |
commit | 44d45a6342cd3702139bcfae9859a4220a32280c (patch) | |
tree | 6368af8764ad8c1527499e5c12c8de6bdf38f17b /src/lib/util/cdrom.h | |
parent | c99190e0d19ca7bb0d3bac70d9a02cb0da8f8265 (diff) |
util/cdrom.h: Fixed size of track info array.
Also made it possible to enable VERBOSE in cdrom.cpp without link
errors.
Diffstat (limited to 'src/lib/util/cdrom.h')
-rw-r--r-- | src/lib/util/cdrom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/cdrom.h b/src/lib/util/cdrom.h index 214a7ed39d6..20769a874b7 100644 --- a/src/lib/util/cdrom.h +++ b/src/lib/util/cdrom.h @@ -92,7 +92,7 @@ public: { uint32_t numtrks; /* number of tracks */ uint32_t flags; /* see FLAG_ above */ - track_info tracks[MAX_TRACKS]; + track_info tracks[MAX_TRACKS + 1]; }; struct track_input_entry |