Skip to content

Commit

Permalink
Fix bug when using the true/false boolean constant block.
Browse files Browse the repository at this point in the history
Merge pull request #115 from haroldo-ok/fix-boolean-constant
Fix #113
  • Loading branch information
haroldo-ok authored Oct 9, 2024
2 parents 27340d9 + 5346d40 commit 8f899db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 27 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vcs-game-maker",
"version": "0.25.3",
"version": "0.25.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
29 changes: 3 additions & 26 deletions src/generators/bbasic.bb.hbs
Original file line number Diff line number Diff line change
@@ -1,31 +1,5 @@
set tv ntsc
set romsize 4k
rem **************************************************************************
rem Playfield and players setup:
rem - shape of the playfield and player sprites
rem **************************************************************************

player0:
%00100010
%00010100
%00001010
%00111110
%00101000
%00011100
%00011100
%00011100
end

player1:
%01000100
%00101000
%01010000
%01111100
%00010100
%00111000
%00111000
%00111000
end


rem **************************************************************************
Expand All @@ -35,6 +9,9 @@ end
COLUBK = $0F
score = 00000 : scorecolor = $08

const true = 1
const false = 0

dim player0frame = x
dim player1frame = z
dim newbackground = y
Expand Down

0 comments on commit 8f899db

Please sign in to comment.