Welcome to the Rockbox Technical Forums!
diff --git a/apps/plugins/rockboy/sys_rockbox.c b/apps/plugins/rockboy/sys_rockbox.cindex 31bab1c..3a1f3c6 100644--- a/apps/plugins/rockboy/sys_rockbox.c+++ b/apps/plugins/rockboy/sys_rockbox.c@@ -261,7 +261,7 @@ void vid_init(void) fb.enabled=1; #if defined(HAVE_LCD_COLOR)-#if LCD_DEPTH == 24+#if LCD_DEPTH >= 24 fb.cc[0].r = 0; /* 8-8 (wasted bits on red) */ fb.cc[0].l = 16; /* this is the offset to the R bits (24-8) */ fb.cc[1].r = 0; /* 8-6 (wasted bits on green) */
This patch should fix it. gba bas higher resolution than agptek so some of the pixels will be missing which for instance makes text harder to read. Could be made better with antialiasing but.. meh..If there are problems with the keymap look at https://github.com/wodz/rockbox-wodz/commit/103f963d646f29e2958d8f44c24d1e85d8ff3e94 and post your changes.Oh yeah, buttons A and B should be swapped for rockboy.It should be possible to change font size by installing theme from http://themes.rockbox.org/ but I am not sure which player would have display size close to 128x160 that of agptek.Code: [Select]diff --git a/apps/plugins/rockboy/sys_rockbox.c b/apps/plugins/rockboy/sys_rockbox.cindex 31bab1c..3a1f3c6 100644--- a/apps/plugins/rockboy/sys_rockbox.c+++ b/apps/plugins/rockboy/sys_rockbox.c@@ -261,7 +261,7 @@ void vid_init(void) fb.enabled=1; #if defined(HAVE_LCD_COLOR)-#if LCD_DEPTH == 24+#if LCD_DEPTH >= 24 fb.cc[0].r = 0; /* 8-8 (wasted bits on red) */ fb.cc[0].l = 16; /* this is the offset to the R bits (24-8) */ fb.cc[1].r = 0; /* 8-6 (wasted bits on green) */
Quote from: alcaier on March 26, 2018, 04:24:32 PMThis patch should fix it. gba bas higher resolution than agptek so some of the pixels will be missing which for instance makes text harder to read. Could be made better with antialiasing but.. meh..If there are problems with the keymap look at https://github.com/wodz/rockbox-wodz/commit/103f963d646f29e2958d8f44c24d1e85d8ff3e94 and post your changes.Oh yeah, buttons A and B should be swapped for rockboy.It should be possible to change font size by installing theme from http://themes.rockbox.org/ but I am not sure which player would have display size close to 128x160 that of agptek.Code: [Select]diff --git a/apps/plugins/rockboy/sys_rockbox.c b/apps/plugins/rockboy/sys_rockbox.cindex 31bab1c..3a1f3c6 100644--- a/apps/plugins/rockboy/sys_rockbox.c+++ b/apps/plugins/rockboy/sys_rockbox.c@@ -261,7 +261,7 @@ void vid_init(void) fb.enabled=1; #if defined(HAVE_LCD_COLOR)-#if LCD_DEPTH == 24+#if LCD_DEPTH >= 24 fb.cc[0].r = 0; /* 8-8 (wasted bits on red) */ fb.cc[0].l = 16; /* this is the offset to the R bits (24-8) */ fb.cc[1].r = 0; /* 8-6 (wasted bits on green) */No, the problem is not the missing 16 horizontal pixels (AGPTEK has the same screen as the Zen Mozaic and similar targets) nor the button mapping which can be easily changed trough the Rockboy settings, but rather the light blue tint on the area where the emulator screen is drawn.If you set the orientation to off without stretching (if enabled it makes the AGPTEK freeze or gives back a segmentation error), you can see what I mean with light blue tint, since I can't post a pic of it right now.
So, now the question is:How do I apply that patch?
So, now the question is:How do I apply that patch?I'll admit I'm pretty newb with such things.And concering the memory boundaries, (for me at least) It's not such a big issue since the music will be covered by the game sound anyways, but swapping between memory and the swap file might slow down the emulation tho
Page created in 0.085 seconds with 19 queries.