Skip to content

Commit

Permalink
Merge pull request #5237 from maron2000/zpath_fix
Browse files Browse the repository at this point in the history
Fix Z Drive path expansion to be case insensitive
  • Loading branch information
joncampbell123 authored Oct 8, 2024
2 parents bdacd50 + 4b15f92 commit 3c9a960
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Next
- Fixed Z Drive path expansion to be case insensitive (maron2000)

2024.10.01
- Allow the ".inst" extension for CUE sheets. (Allofich)
- Add SET /FIRST, a DOSBox-X extension, that takes the specified
Expand Down Expand Up @@ -96,6 +99,7 @@
- retain 'show advanced options' state throughout session
- SVN r4483: Fix compilation in Visual Studio 2008 (Allofich)
- DOSBox Staging: Decouple CMS and OPL emulations (Allofich)
- Fixed reading NEC specific character font data.(nanshiki)

2024.07.01
- Correct Hercules InColor memory emulation. Read and write planar
Expand Down
2 changes: 1 addition & 1 deletion src/shell/shell_cmds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2810,7 +2810,7 @@ void DOS_Shell::CMD_SET(char * args) {
WriteOut(MSG_Get("SHELL_CMD_SET_NOT_SET"),env_name.c_str());
break;
case set_env:
if (zdirpath && env_name == "path") GetExpandedPath(env_value);
if(zdirpath && !strcasecmp(env_name.c_str(), "path")) GetExpandedPath(env_value);

/* No parsing is needed. The command interpreter does the variable substitution for us */
/* NTS: If Win95 is any example, the command interpreter expands the variables for us */
Expand Down

0 comments on commit 3c9a960

Please sign in to comment.