~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/drive/drive-check.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050201113026-6gy97mcqlg2ykg4z
Tags: upstream-1.16
ImportĀ upstreamĀ versionĀ 1.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
int drive_check_idle_method(unsigned int drive_type)
164
164
{
165
165
    if ((drive_type == DRIVE_TYPE_1541) ||
166
 
        (drive_type == DRIVE_TYPE_1541II))
 
166
        (drive_type == DRIVE_TYPE_1541II) ||
 
167
        (drive_type == DRIVE_TYPE_1551))
167
168
        return 1;
168
169
    return 0;
169
170
}
175
176
        return 1;
176
177
    return 0;
177
178
}
178