renamed to GCR

This commit is contained in:
Denis Molony 2019-09-05 08:15:53 +10:00
parent 43cabfa7bb
commit c83f542ba2
2 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ abstract class DiskReader
static DiskReader reader13;
static DiskReader reader16;
static DiskReader readerGRC;
static DiskReader readerGCR;
final int sectorsPerTrack;
@ -37,9 +37,9 @@ abstract class DiskReader
return reader16;
case 0:
if (readerGRC == null)
readerGRC = new DiskReaderGRC ();
return readerGRC;
if (readerGCR == null)
readerGCR = new DiskReaderGCR ();
return readerGCR;
default:
return null;

View File

@ -1,13 +1,13 @@
package com.bytezone.diskbrowser.nib;
// -----------------------------------------------------------------------------------//
public class DiskReaderGRC extends DiskReader
public class DiskReaderGCR extends DiskReader
// -----------------------------------------------------------------------------------//
{
private final ByteTranslator byteTranslator = new ByteTranslator6and2 ();
// ---------------------------------------------------------------------------------//
DiskReaderGRC ()
DiskReaderGCR ()
// ---------------------------------------------------------------------------------//
{
super (0);