mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
mcd, preparations for msu support
This commit is contained in:
parent
178a9b683c
commit
02ff025479
15 changed files with 153 additions and 170 deletions
|
@ -289,9 +289,11 @@ enum cd_track_type
|
|||
CT_ISO = 1, /* 2048 B/sector */
|
||||
CT_BIN = 2, /* 2352 B/sector */
|
||||
// audio tracks
|
||||
CT_MP3 = 3,
|
||||
CT_WAV = 4,
|
||||
CT_CHD = 5,
|
||||
CT_AUDIO = 8,
|
||||
CT_RAW = CT_AUDIO | 1,
|
||||
CT_CHD = CT_AUDIO | 2,
|
||||
CT_MP3 = CT_AUDIO | 3,
|
||||
CT_WAV = CT_AUDIO | 4,
|
||||
};
|
||||
|
||||
typedef struct
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue