diff options
author | Max Horn | 2011-06-06 17:56:36 +0200 |
---|---|---|
committer | Max Horn | 2011-06-06 17:56:36 +0200 |
commit | c1b68a7fd75fb30bcbc26b1a59be526bda877b0c (patch) | |
tree | 6726b31ec22fa667e22028ce139475e028d810b8 | |
parent | 40422441af8b392a3ba6c12c85110ee692c304da (diff) | |
download | scummvm-rg350-c1b68a7fd75fb30bcbc26b1a59be526bda877b0c.tar.gz scummvm-rg350-c1b68a7fd75fb30bcbc26b1a59be526bda877b0c.tar.bz2 scummvm-rg350-c1b68a7fd75fb30bcbc26b1a59be526bda877b0c.zip |
COMMON: Clarify & correct OSystem::displayLogFile() docs
-rw-r--r-- | common/system.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/common/system.h b/common/system.h index 87e74d928c..f206f4dccc 100644 --- a/common/system.h +++ b/common/system.h @@ -1072,7 +1072,7 @@ public: * On a desktop operating system, this would typically launch * some kind of (external) text editor / viewer. * On a phone, it might also cause a context switch to another - * application. Finally, on some ports, it might not be supported. + * application. Finally, on some ports, it might not be supported * at all, and so do nothing. * * The kFeatureDisplayLogFile feature flag can be used to @@ -1083,7 +1083,11 @@ public: * * @note An error could mean that the log file did not exist, * or the editor could not launch. However, a return value of true does - * not guarantee that the user actually will the log file. + * not guarantee that the user actually will see the log file. + * + * @note It is up to the backend to ensure that the system is in a state + * that allows the user to actually see the displayed log files. This + * might for example require leaving fullscreen mode. */ virtual bool displayLogFile() { return false; } |