Post Reply 
 
Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Disable Internal Resolution / Display Size Info?
11-07-2015, 06:17 PM (This post was last modified: 11-07-2015 06:19 PM by papermanzero.)
Post: #5
RE: Disable Internal Resolution / Display Size Info?
In general a function in the FramebufferCommon.cpp must be adapted.
Unfortunatelly I don't know how to handle paramenters.
But adding a paramenter to disable "osm.Show(messageStream.str(), 2.0f, 0xFFFFFF, -1, true, "resize")" or the function itself would be sufficient.

Currently it is also possible to delete this line (as workaround).
Then the message is also disabled. But to recompile the source only due to this issue is extremely annoying (like the message itself).

Here the function:

Code:
void FramebufferManagerCommon::ShowScreenResolution() {
    I18NCategory *gr = GetI18NCategory("Graphics");

    std::ostringstream messageStream;
    messageStream << gr->T("Internal Resolution") << ": ";
    messageStream << PSP_CoreParameter().renderWidth << "x" << PSP_CoreParameter().renderHeight << " ";
    messageStream << gr->T("Window Size") << ": ";
    messageStream << PSP_CoreParameter().pixelWidth << "x" << PSP_CoreParameter().pixelHeight;

    osm.Show(messageStream.str(), 2.0f, 0xFFFFFF, -1, true, "resize");
}
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Disable Internal Resolution / Display Size Info? - papermanzero - 11-07-2015 06:17 PM

Forum Jump: