mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
add a pitch variable
32x is still broken
This commit is contained in:
parent
88f6038d05
commit
9cdfc191b6
11 changed files with 59 additions and 46 deletions
|
@ -18,7 +18,7 @@ static int menu_loop_cscaler(int id, int keys)
|
|||
for (;;)
|
||||
{
|
||||
menu_draw_begin(0, 1);
|
||||
memset(g_menuscreen_ptr, 0, g_menuscreen_w * g_menuscreen_h * 2);
|
||||
menuscreen_memset_lines(g_menuscreen_ptr, 0, g_menuscreen_h);
|
||||
text_out16(2, 480 - 18, "%dx%d | d-pad to resize, R+d-pad to move", g_layer_cw, g_layer_ch);
|
||||
menu_draw_end();
|
||||
|
||||
|
|
|
@ -488,7 +488,7 @@ void plat_init(void)
|
|||
exit(1);
|
||||
}
|
||||
|
||||
g_menuscreen_w = w;
|
||||
g_menuscreen_w = g_menuscreen_pp = w;
|
||||
g_menuscreen_h = h;
|
||||
g_menuscreen_ptr = vout_fbdev_flip(main_fb);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue