VideoSystem.cc 377 B

123456789101112131415161718192021222324
  1. #include "VideoSystem.hh"
  2. #include "MSXException.hh"
  3. namespace openmsx {
  4. bool VideoSystem::checkSettings()
  5. {
  6. return true;
  7. }
  8. void VideoSystem::takeScreenShot(
  9. const std::string& /*filename*/, bool /*withOsd*/)
  10. {
  11. throw MSXException(
  12. "Taking screenshot not possible with current renderer.");
  13. }
  14. void VideoSystem::updateWindowTitle()
  15. {
  16. // ignore
  17. }
  18. } // namespace openmsx