aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/sdl.h
diff options
context:
space:
mode:
authorAlejandro Marzini2010-06-20 22:45:09 +0000
committerAlejandro Marzini2010-06-20 22:45:09 +0000
commit9d41a45976767a6337d756e547fd9b7c2d6ef4aa (patch)
tree2356770401f051638936349160be3c9ee496d445 /backends/platform/sdl/sdl.h
parente0fe48032d6e27445a9c963e70cf82bf57b5fd5a (diff)
downloadscummvm-rg350-9d41a45976767a6337d756e547fd9b7c2d6ef4aa.tar.gz
scummvm-rg350-9d41a45976767a6337d756e547fd9b7c2d6ef4aa.tar.bz2
scummvm-rg350-9d41a45976767a6337d756e547fd9b7c2d6ef4aa.zip
Created win32 port from sdl backend.
svn-id: r50103
Diffstat (limited to 'backends/platform/sdl/sdl.h')
-rw-r--r--backends/platform/sdl/sdl.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h
index 46053faf46..f5289edbe8 100644
--- a/backends/platform/sdl/sdl.h
+++ b/backends/platform/sdl/sdl.h
@@ -48,7 +48,7 @@ public:
// Quit
virtual void quit(); // overloaded by CE backend
- void deinit();
+ virtual void deinit();
virtual void setWindowCaption(const char *caption);
@@ -60,14 +60,16 @@ public:
virtual bool pollEvent(Common::Event &event);
- uint32 getMillis();
- void delayMillis(uint msecs);
- void getTimeAndDate(TimeDate &td) const;
+ virtual uint32 getMillis();
+ virtual void delayMillis(uint msecs);
+ virtual void getTimeAndDate(TimeDate &td) const;
protected:
bool _inited;
void setupIcon();
+
+ virtual Common::String getDefaultConfigFileName();
};
#endif