Skip to content

Commit

Permalink
Refactor: use string values for CHDType enum (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmercm authored Jul 25, 2024
1 parent f21b9ca commit 8d1f785
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/chdman/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ export enum CHDCompressionAlgorithm {
}

export enum CHDType {
RAW = 1,
HARD_DISK,
CD_ROM,
GD_ROM,
DVD_ROM,
RAW = 'RAW',
HARD_DISK = 'HARD_DISK',
CD_ROM = 'CD_ROM',
GD_ROM = 'GD_ROM',
DVD_ROM = 'DVD_ROM',
// LASER_DISC,
}

0 comments on commit 8d1f785

Please sign in to comment.