Search found 153 matches

by VirtualChris
June 11th, 2019, 03:57
Forum: PM Development Forum
Topic: Frank the Fruit Fly
Replies: 63
Views: 155044

Re: Frank the Fruit Fly

New title screen image. franktitle3.png Does anyone have any idea of what I should do when my program reaches 64k? It's 49k right now, but I want it to be 4MB in the end, and 64k isn't very far away. I've made a new couple of screens. One where you need to enter an igloo and press a switch to make a...
by VirtualChris
May 15th, 2019, 20:40
Forum: Flash Carts
Topic: Flash Cart Shells
Replies: 39
Views: 86891

Re: Flash Cart Shells

I asked a guy to do this for me and he ran into a problem with it: "Ran into a bit of a snag. Yesterday I had both parts printed out. But when I went to put them together they do not fit well together, either the top is too big or the bottom is too small. I may be able to resize one of them, do...
by VirtualChris
May 3rd, 2019, 23:51
Forum: Main PM Forum
Topic: Cleaning the screen
Replies: 4
Views: 11589

Re: Cleaning the screen

No scratches, just smudges.
by VirtualChris
May 3rd, 2019, 15:54
Forum: PM Development Forum
Topic: Frank the Fruit Fly
Replies: 63
Views: 155044

Re: Frank the Fruit Fly

Changed the title screen to explain stuff and lengthened the song a little.
Image
by VirtualChris
May 2nd, 2019, 04:51
Forum: PM Development Forum
Topic: Frank the Fruit Fly
Replies: 63
Views: 155044

Re: Frank the Fruit Fly

Could admin update the file in the Frank the Fruit Fly page and put this file I've attached here on there?
by VirtualChris
May 2nd, 2019, 01:35
Forum: Main PM Forum
Topic: Cleaning the screen
Replies: 4
Views: 11589

Cleaning the screen

I tried to clean my Pokemon Mini screen with the wipe of a cloth but that left streak marks on the screen. Is there a way to keep my Pokemon Mini screen nice and clean so I am not distracted when I try to play it? Should I use Windex or something?
by VirtualChris
May 2nd, 2019, 01:33
Forum: PM Development Forum
Topic: Frank the Fruit Fly
Replies: 63
Views: 155044

Re: Frank the Fruit Fly

I think I fixed it. I added a second variable to keep track of which button I selected. That led to the discovery of the key being used when the key wasn't being pressed. So I added another round of key pressing determining code and that seemed to help a lot.
by VirtualChris
April 29th, 2019, 10:27
Forum: Flash Carts
Topic: Flash Cart Shells
Replies: 39
Views: 86891

Re: Flash Cart Shells

How do I buy one?
by VirtualChris
April 29th, 2019, 06:48
Forum: PM Development Forum
Topic: Frank the Fruit Fly
Replies: 63
Views: 155044

Re: Frank the Fruit Fly

This sucks. I tried this, for pressing right: call read_keys test a, KEY_RIGHT jnz waiting_for_press_right ... waiting_for_press_right: mov a,2 mov [ticker3],a jmp waiting_for_press ... waiting_for_press: call password_key_pressed2 mov a, [buttonpress] inc a mov [buttonpress], a mov a, [buttonpress]...
by VirtualChris
April 24th, 2019, 01:55
Forum: PM Development Forum
Topic: Frank the Fruit Fly
Replies: 63
Views: 155044

Re: Frank the Fruit Fly

I can't seem to get the password screen cursor (Frank) to move correctly. It works on PokeMini, but on a real Pokemon Mini, if you press left or right it sometimes skips a number for no reason. Here is the code I have for testing if right is pressed, for example: call read_keys test a, KEY_RIGHT jnz...