Skip to content

Commit

Permalink
burn.h, BurnRomInfo(&etc) use pointer for szName
Browse files Browse the repository at this point in the history
  • Loading branch information
dinkc64 committed Oct 23, 2024
1 parent 88b00d4 commit 83505d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/burn/burn.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,19 +138,19 @@ inline static void SetCurrentFrame(const UINT32 n) {
#define BRF_NODUMP (1 << 28)

struct BurnRomInfo {
char szName[100];
char *szName;
UINT32 nLen;
UINT32 nCrc;
UINT32 nType;
};

struct BurnSampleInfo {
char szName[100];
char *szName;
UINT32 nFlags;
};

struct BurnHDDInfo {
char szName[100];
char *szName;
UINT32 nLen;
UINT32 nCrc;
};
Expand Down

0 comments on commit 83505d5

Please sign in to comment.