Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*  $(SCE_PS3_ROOT)\target\ppu\lib\libsysutil_stub.a  */
  2.  
  3. #include <sysutil/sysutil_sysparam.h>
  4.  
  5. bool IsResolution1080()
  6. {
  7.     CellVideoOutConfiguration config;
  8.     cellVideoOutGetConfiguration(CELL_VIDEO_OUT_PRIMARY, &config, NULL);
  9.     if (config.resolutionId == CELL_VIDEO_OUT_RESOLUTION_1080)
  10.         return true;
  11.     else
  12.         return false;
  13. }
  14.  
  15. SC58