Skip to content

Commit

Permalink
[fix] - fixed log message on found resolutions on osx
Browse files Browse the repository at this point in the history
  • Loading branch information
Memphiz committed Dec 7, 2011
1 parent e8501ca commit 1b98518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/windowing/osx/WinSystemOSX.mm
Expand Up @@ -936,7 +936,7 @@ void fadeOutDisplay(NSScreen *theScreen, double fadeTime)
// NOTE: The refresh rate will be REPORTED AS 0 for many DVI and notebook displays.
refreshrate = 60.0;
}
CLog::Log(LOGINFO, "Found possible refresh rate for display %d with %f Hz\n", disp, refreshrate);
CLog::Log(LOGINFO, "Found possible resolution for display %d with %d x %d @ %f Hz\n", disp, w, h, refreshrate);

UpdateDesktopResolution(res, disp, w, h, refreshrate);
g_graphicsContext.ResetOverscan(res);
Expand Down

0 comments on commit 1b98518

Please sign in to comment.