From d30f08babab0570c6c39cc443487478583da00ba Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Thu, 4 Oct 2007 06:10:46 +0000 Subject: [PATCH] Win SCR: fix bug in compatibility code for V5 applications svn path=/trunk/boinc/; revision=13773 --- checkin_notes | 7 +++++++ clientscr/screensaver.cpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 744129d2bb..1793c26296 100755 --- a/checkin_notes +++ b/checkin_notes @@ -9119,3 +9119,10 @@ Frank Thomas 4 Oct 2007 Makefile.am lib/ Makefile.am + +Charlie 3 Oct 2007 + - Win SCR: fix bug in compatibility code for V5 applications: use + MODE_FULLSCREEN, not MODE_WINDOW. + + clientscr/ + screensaver.cpp diff --git a/clientscr/screensaver.cpp b/clientscr/screensaver.cpp index 58a9a69a54..335e33f4b0 100644 --- a/clientscr/screensaver.cpp +++ b/clientscr/screensaver.cpp @@ -170,7 +170,7 @@ int launch_screensaver(RESULT* rp, int& graphics_application, RPC_CLIENT* rpc) retval = rpc->show_graphics( rp->project_url.c_str(), rp->name.c_str(), - MODE_WINDOW, + MODE_FULLSCREEN, di ); }