diff --git a/README.md b/README.md index d732cf3..54cee36 100644 --- a/README.md +++ b/README.md @@ -86,10 +86,10 @@ casa@servidor:~$ ./izapple2sdl ### Play games -Download a DSK or WOZ file or use an URL ([Asimov](https://www.apple.asimov.net/images/) is an excellent source) with the `-disk` parameter: +Download a DSK or WOZ file or use an URL ([Asimov](https://www.apple.asimov.net/images/) is an excellent source): ``` terminal -casa@servidor:~$ ./izapple2sdl -disk "https://www.apple.asimov.net/images/games/action/karateka/karateka (includes intro).dsk" +casa@servidor:~$ ./izapple2sdl "https://www.apple.asimov.net/images/games/action/karateka/karateka (includes intro).dsk" ``` ![Karateka](doc/karateka.png) @@ -97,10 +97,10 @@ casa@servidor:~$ ./izapple2sdl -disk "https://www.apple.asimov.net/images/games/ ### Play the Total Replay collection Download the excellent [Total Replay](https://archive.org/details/TotalReplay) compilation by -[a2-4am](https://github.com/a2-4am/4cade). Run it with the `-hd` parameter: +[a2-4am](https://github.com/a2-4am/4cade): ``` terminal -casa@servidor:~$ ./izapple2sdl -hd "Total Replay v3.0.2mg" +casa@servidor:~$ ./izapple2sdl Total\ Replay\ v4.0-alpha.3.hdv ``` Displays super hi-res box art as seen with the VidHD card. diff --git a/doc/karateka.png b/doc/karateka.png index 23906d5..b85273e 100644 Binary files a/doc/karateka.png and b/doc/karateka.png differ diff --git a/doc/totalreplay.png b/doc/totalreplay.png index dd6f4aa..d96fb66 100644 Binary files a/doc/totalreplay.png and b/doc/totalreplay.png differ diff --git a/izapple2sdl/main.go b/izapple2sdl/main.go index c11e584..9d6224e 100644 --- a/izapple2sdl/main.go +++ b/izapple2sdl/main.go @@ -27,7 +27,7 @@ func main() { // SDLRun starts the Apple2 emulator on SDL func SDLRun(a *izapple2.Apple2) { - window, renderer, err := sdl.CreateWindowAndRenderer(4*40*7, 4*24*8, + window, renderer, err := sdl.CreateWindowAndRenderer(4*40*7+8, 4*24*8, sdl.WINDOW_SHOWN) if err != nil { panic("Failed to create window")