Changeset 552 for trunk/dll/mainwnd.c


Ignore:
Timestamp:
Mar 1, 2007, 7:24:47 AM (18 years ago)
Author:
Gregg Young
Message:

font cleanup; new image and archiver masks; messages moved to string file; new drive flags including David's icons mostly working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/mainwnd.c

    r551 r552  
    77
    88  Copyright (c) 1993-98 M. Kimes
    9   Copyright (c) 2001, 2006 Steven H. Levine
     9  Copyright (c) 2001, 2007 Steven H. Levine
    1010
    1111  11 Jun 02 SHL Drop obsolete xor code
     
    2424  17 Jul 06 SHL Use Runtime_Error
    2525  17 Aug 06 SHL Complain nicer if state name does not exist
     26  18 Feb 07 GKY More drive type and icon support
    2627
    2728***********************************************************************/
     
    19551956            iconid = (driveflags[x] & DRIVE_REMOVABLE) ?
    19561957              REMOVABLE_ICON :
     1958                     (driveflags[x] & DRIVE_VIRTUAL) ?
     1959                      VIRTUAL_ICON :
    19571960              (driveflags[x] & DRIVE_REMOTE) ?
    19581961              REMOTE_ICON :
    1959               (driveflags[x] & DRIVE_ZIPSTREAM) ? DRIVE_ICON : DRIVE_ICON;
     1962                     (driveflags[x] & DRIVE_RAMDISK) ?
     1963                      RAMDISK_ICON :
     1964                     (driveflags[x] & DRIVE_ZIPSTREAM) ?
     1965                      ZIPSTREAM_ICON :DRIVE_ICON;
    19601966        }
    19611967        else
Note: See TracChangeset for help on using the changeset viewer.