From ded7c10ed3e7cc1da04fca0066a7103521180eba Mon Sep 17 00:00:00 2001 From: Ivan Izaguirre Date: Sun, 2 Jun 2019 23:18:35 +0200 Subject: [PATCH] Fix texts --- README.md | 4 ++-- apple2main.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 662f541..dd9486f 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ casa@servidor:~$ ./apple2sdl -disk ~/Downloads/karateka.dsk ### Terminal mode -To run text mode right on the terminal without the SDL2 dependency just run `apple2console`. It runs on the console using ANSI escape codes. Input is sent to the emulated Apple II one line at a time: +To run text mode right on the terminal without the SDL2 dependency, use `apple2console`. It runs on the console using ANSI escape codes. Input is sent to the emulated Apple II one line at a time: ``` casa@servidor:~$ ./apple2console @@ -92,7 +92,7 @@ Only valid on SDL mode ``` -charRom string - rom file for the disk drive controller (default "/Apple2rev7CharGen.rom") + rom file for the character generator (default "/Apple2rev7CharGen.rom") -disk string file to load on the first disk drive (default "/dos33.dsk") -disk2Slot int diff --git a/apple2main.go b/apple2main.go index d1bf018..b5182ca 100644 --- a/apple2main.go +++ b/apple2main.go @@ -30,7 +30,7 @@ func MainApple() *Apple2 { charRomFile := flag.String( "charRom", "/Apple2rev7CharGen.rom", - "rom file for the disk drive controller") + "rom file for the character generator") languageCardSlot := flag.Int( "languageCardSlot", 0,