diff options
| author | Ian C <ianc@noddybox.co.uk> | 2007-04-03 23:05:47 +0000 | 
|---|---|---|
| committer | Ian C <ianc@noddybox.co.uk> | 2007-04-03 23:05:47 +0000 | 
| commit | 4e51d5ddfc4b5f033d8558fb6b529fe90bd3892a (patch) | |
| tree | 760a97bca28faf0ba93b2a63e969c0102e1be3fe | |
| parent | e4ad530b872ca5b757b7dbde55531ae462af779f (diff) | |
*** empty log message ***
| -rw-r--r-- | CHANGES | 5 | ||||
| -rw-r--r-- | instructions.txt | 2 | ||||
| -rw-r--r-- | source/gui.c | 4 | ||||
| -rw-r--r-- | version | 2 | 
4 files changed, 9 insertions, 4 deletions
| @@ -39,3 +39,8 @@ Changes from V1.1a to V1.2      +	Changed lower screen to 8-bit deep so I can overlay a tiled mode.      +	Added lower screen console routines.      +	Added Machine Code Monitor. + +Changes from V1.2 to V1.2a + +    +	Made file selector filter case-insensitive. + diff --git a/instructions.txt b/instructions.txt index 730f513..99c2b23 100644 --- a/instructions.txt +++ b/instructions.txt @@ -17,7 +17,7 @@      contact me and it will be gladly removed.          ZX81 BASIC ROM (c) 1981 Nine Tiles Networks LTD -        3D Monster Maze (c) 1983 Malcom E. Evans +        3D Monster Maze (c) 1983 Malcolm E. Evans          Mazogs, City Patrol and Sabotage (c) 1981, 1982 Don Priestley diff --git a/source/gui.c b/source/gui.c index 886c103..ed30706 100644 --- a/source/gui.c +++ b/source/gui.c @@ -109,7 +109,7 @@ static int SortFiles(const void *a, const void *b)      if (f1->is_dir == f2->is_dir)      { -    	return strcmp(f1->name, f2->name); +    	return strcasecmp(f1->name, f2->name);      }      else if (f1->is_dir)      { @@ -142,7 +142,7 @@ static int ValidFilename(const char *name, int is_dir, const char *filter)      if (l > f)      { -    	if (strcmp(name+l-f,filter) == 0) +    	if (strcasecmp(name+l-f,filter) == 0)  	{  	    return 1;  	} @@ -1 +1 @@ -V1.2A +V1.2a | 
