Quote:
Originally Posted by liim
I'm not sure what’s going on on your device.
BTW: Did you try Gnuboy? Maybe working on old model.
I made Gambatte-K because it’s not working on pw3.
|
hi liim,
ok i'll put some screenshots below.
My wild guess would be, that you do not acount for the resolutions different models have.
I have a KT3 hence mine has a 600x800 pixel resolution and that is not enough for the menu bar, it seems.
K2, K3, K4, K5, KT2, KT3 = 600x800 px
PW1, PW2 = 758x1024 px
DX, DXi, DXG = 824x1200 px
PW3, KV = 1072x1448 px
(i'm sure i missed one and kindle police will make me aware of it

)
EDIT: Don't get me wrong it IS working perfectly!
There is just no way to change frame skip or speed more than you can see in the screenshots below.
EDIT 2:
Quote:
May i suggest to invert it, so it starts with 60?
|
What i was suggesting is a quick dirty fix without messing too much.
src/gtk/main.cpp - line 308 - 311
from :
Code:
int frameskips[21] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15,
20, 30, 40, 50, 60
};
to :
Code:
int frameskips[21] = {60, 50, 40, 30, 20, 15, 14, 13, 12, 11,
10, 9, 8, 7, 6, 5,
4, 3, 2, 1, 0
};
and src/gtk/main.cpp - line 326
from:
Code:
float turbospeeds[11] = {0.25, 0.5, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0};
to :
Code:
float turbospeeds[11] = {10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 0.5, 0.25};
This would make the menu options usable on my KT3 and wouldn't change much on your side.
thx for the source
greetings wodan