Skip to content

Commit

Permalink
chore: add ps4/ps5 crash types (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 authored Oct 29, 2024
1 parent 83ebc5f commit 058a35b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/post/crash-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ export class CrashType {
static readonly electron = new CrashType('Electron', 22);
static readonly native = new CrashType('Windows.Native', 1);
static readonly mac = new CrashType('macOS', 13);
static readonly ps4 = new CrashType('PlayStation 4', 28);
static readonly ps5 = new CrashType('PlayStation 5', 29);
private constructor(public readonly name: string, public readonly id: number) { }
}

0 comments on commit 058a35b

Please sign in to comment.