Show memory beyond 2MB line on developer info screen

This commit is contained in:
Lephenixnoir 2021-09-18 10:09:44 +02:00
parent b536a8e31f
commit c38d104d7a
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
1 changed files with 3 additions and 0 deletions

View File

@ -753,6 +753,9 @@ int main(void)
Layout_Spacing(&l, 12);
Layout_Text(&l, "Index build time:", "%d ms", ms_index);
Layout_Text(&l, "File mapping time:", "%d ms", ms_mmap);
Layout_Spacing(&l, 12);
Layout_Text(&l, "Memory beyond the 2MB line:", "%d kB",
CGD_2MBLineMemory >> 10);
Bdisp_PutDisp_DD();
int key;
GetKey(&key);