-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This sweeps up a number of small changes made since the 2008 wangemu 2.1 release. Most of the changes were related to updating the code for wxWidgets 2.9.4 back in 2012. A few minor typos were also fixed along the way.
- Loading branch information
Showing
22 changed files
with
455 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
CLEAR | ||
10 DIM A$1 | ||
20 FOR R=1 TO 7 | ||
20 FOR R=0 TO 7 | ||
30 FOR C=0 TO 31 | ||
40 A=R*32+C:BIN(A$)=A:PRINT A$; | ||
50 NEXT C:PRINT:NEXT R | ||
40 IF R>0 THEN 50:IF C>15 THEN 50:PRINT " ";:GOTO 60 | ||
50 A=R*32+C:BIN(A$)=A:PRINT A$; | ||
60 NEXT C:PRINT:NEXT R |
Oops, something went wrong.