From d063929522d881bb7bc8c953243bdc71a1a0b6ea Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Mon, 7 Oct 2019 18:24:03 -0230 Subject: [PATCH] Fix typo. --- src/emucore/CartDetector.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emucore/CartDetector.cxx b/src/emucore/CartDetector.cxx index 957178419..9d37b07d1 100644 --- a/src/emucore/CartDetector.cxx +++ b/src/emucore/CartDetector.cxx @@ -760,7 +760,7 @@ bool CartDetector::isProbablyDF(const ByteBuffer& image, size_t size, Bankswitch::Type& type) { - // BF carts store strings 'DFDF' and 'DFSC' starting at address $FFF8 + // DF carts store strings 'DFDF' and 'DFSC' starting at address $FFF8 // This signature is attributed to "RevEng" of AtariAge uInt8 df[] = { 'D', 'F', 'D', 'F' }; uInt8 dfsc[] = { 'D', 'F', 'S', 'C' };