mirror of
https://github.com/dmolony/DiskBrowser.git
synced 2024-11-29 11:49:29 +00:00
renamed to GCR
This commit is contained in:
parent
43cabfa7bb
commit
c83f542ba2
@ -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;
|
||||
|
@ -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);
|
Loading…
Reference in New Issue
Block a user