Fixed save type selector cursor at the wrong position and added cache flushing.

This commit is contained in:
profi200 2024-07-16 21:12:51 +02:00 committed by profi200
parent 073daac2bb
commit f7efd62ea9
1 changed files with 3 additions and 2 deletions

View File

@ -244,9 +244,10 @@ u16 getSaveType(const OafConfig *const cfg, const u32 romSize, const char *const
cursor = saveTypeCursorLut[saveType];
while(1)
{
ee_printf("\x1b[%u;H ", oldCursor + 6);
ee_printf("\x1b[%u;H>", cursor + 6);
ee_printf("\x1b[%u;H ", oldCursor + 7);
ee_printf("\x1b[%u;H>", cursor + 7);
oldCursor = cursor;
GFX_flushBuffers();
u32 kDown;
do