Show page size and WX Exclusive status in system info

This commit is contained in:
Henrik Rydgård 2017-01-26 09:20:05 +01:00
parent 6ea3c6a7e3
commit 69b35a35be

View file

@ -363,6 +363,9 @@ void SystemInfoScreen::CreateViews() {
deviceSpecs->Add(new InfoItem("D3DX Version", StringFromFormat("%d", GetD3DXVersion())));
}
#endif
deviceSpecs->Add(new ItemHeader("OS Information"));
deviceSpecs->Add(new InfoItem("Memory Page Size", StringFromFormat("%d bytes", GetMemoryProtectPageSize())));
deviceSpecs->Add(new InfoItem("RW/RX exclusive: ", PlatformIsWXExclusive() ? "Yes" : "No"));
#ifdef __ANDROID__
deviceSpecs->Add(new ItemHeader("Audio Information"));