Skip to content

Commit

Permalink
Updated to include Vic changes (recognize Sega CD PCM chip commands)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane-D committed Jun 10, 2024
1 parent 4a16eb7 commit ee31806
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified bin/xgmtool.exe
Binary file not shown.
6 changes: 3 additions & 3 deletions tools/xgmtool/src/xgmtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#define SYSTEM_PAL 1


const char* version = "1.74";
const char* version = "1.75";
int sys;
bool silent;
bool verbose;
Expand All @@ -32,7 +32,7 @@ int main(int argc, char *argv[ ])

if (argc < 3)
{
printf("XGMTool %s - Stephane Dallongeville - copyright 2020\n", version);
printf("XGMTool %s - Stephane Dallongeville - copyright 2024\n", version);
printf("\n");
printf("Usage: xgmtool inputFile outputFile <options>\n");
printf("XGMTool can do the following operations:\n");
Expand Down Expand Up @@ -132,7 +132,7 @@ int main(int argc, char *argv[ ])
sys = SYSTEM_NTSC;
else if (!strcasecmp(argv[i], "-p"))
sys = SYSTEM_PAL;
else if (!strcasecmp(argv[i], "-r"))
else if (!strcasecmp(argv[i], "-r"))
keepRF5C68Cmds = true;
else
printf("Warning: option %s not recognized (ignored)\n", argv[i]);
Expand Down

0 comments on commit ee31806

Please sign in to comment.