diff options
author | Max Horn | 2011-06-17 12:16:18 -0700 |
---|---|---|
committer | Max Horn | 2011-06-17 12:16:18 -0700 |
commit | 158c2252ab4fea7fd9ecea62a2439d82b388df1c (patch) | |
tree | be7e972a8118b92d6cbdc16ce36129a4de3c094f /common/system.h | |
parent | 825c889e33d2c68dec65e6496c69d5d4a89cba51 (diff) | |
parent | f7c1e7d002c21eeaf0b5c06d3527ede532f5cd51 (diff) | |
download | scummvm-rg350-158c2252ab4fea7fd9ecea62a2439d82b388df1c.tar.gz scummvm-rg350-158c2252ab4fea7fd9ecea62a2439d82b388df1c.tar.bz2 scummvm-rg350-158c2252ab4fea7fd9ecea62a2439d82b388df1c.zip |
Merge pull request #42 from fingolfin/no-osystem-defaults
Remove default implementation of OSystem::logMessage
Diffstat (limited to 'common/system.h')
-rw-r--r-- | common/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/system.h b/common/system.h index d26bc593aa..3e740ff0c1 100644 --- a/common/system.h +++ b/common/system.h @@ -1101,7 +1101,7 @@ public: * @param type the type of the message * @param message the message itself */ - virtual void logMessage(LogMessageType::Type type, const char *message); + virtual void logMessage(LogMessageType::Type type, const char *message) = 0; /** * Open the log file in a way that allows the user to review it, |