Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
0.26.2
Browse files Browse the repository at this point in the history
Small bugfixes
Improved snake example
  • Loading branch information
PQCraft committed Oct 19, 2021
1 parent a6b1d2b commit d6d370e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion clibasic.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@

// Base defines

char VER[] = "0.26.1";
char VER[] = "0.26.2";

#if defined(__linux__)
char OSVER[] = "Linux";
Expand Down
2 changes: 1 addition & 1 deletion examples
Submodule examples updated 1 files
+23 −6 snake.bas
2 changes: 2 additions & 0 deletions logic.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ if (chkCmd(1, "LOOP")) {
if (brkinfo.block == 1) {
if (brkinfo.type >= 1) {dldcmd[dlstackp] = false;}
if (brkinfo.type == 2) {brk = true;}
brkinfo.type = 0;
}
if (dlstackp > ((progindex > -1) ? mindlstackp[progindex] : -1)) {
if (dldcmd[dlstackp]) {dlstackp--; return true;}
Expand Down Expand Up @@ -165,6 +166,7 @@ if (chkCmd(1, "LOOPWHILE")) {
if (brkinfo.block == 1) {
if (brkinfo.type >= 1) {dldcmd[dlstackp] = false;}
if (brkinfo.type == 2) {brk = true;}
brkinfo.type = 0;
}
if (dlstackp > ((progindex > -1) ? mindlstackp[progindex] : -1)) {
if (dldcmd[dlstackp]) {dlstackp--; return true;}
Expand Down

0 comments on commit d6d370e

Please sign in to comment.