Skip to content

Commit

Permalink
Update snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanizag committed Oct 4, 2020
1 parent 442daca commit 4fca7dc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,21 @@ 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)

### 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.
Expand Down
Binary file modified doc/karateka.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/totalreplay.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion izapple2sdl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4fca7dc

Please sign in to comment.