Jump to content
IGNORED

Mowleco - new ColecoVision homebrew game


smccd

Recommended Posts

Nice start. I would suggest upping the difficulty by making the mower move continuously and forward only. The player only has control of changing mower direction, i.e. left/right. The continuous movement would make one have to think further ahead all the time and I believe would make the game more challenging.

Link to comment
Share on other sites

Hi, i've look at your note on the web site. If you want to avoid game crash when you add more tiles or sprite, add "const" before the data declaration in C.

 

Instead of doing byte namerle[] = {10,..};

 

use

 

const byte namerle[] = ...

 

and in the main program

 

extern const byte namerel[];

 

If you don't put the const, the data are included in RAM instead of the 32 ko rom, and if you go more than 1ko of ram, it crash. And if you do that with the const, the game will compile at light speed ;) ;)

Edited by bfg.gamepassion
  • Like 1
Link to comment
Share on other sites

  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...