aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1/sword1.h
diff options
context:
space:
mode:
authorMax Horn2009-11-02 21:54:57 +0000
committerMax Horn2009-11-02 21:54:57 +0000
commit51933629d1f1a17839ddbb75b2b619effe117abb (patch)
tree7292b23e5ce3fb11e6b2bb360a3befbbf35b64d9 /engines/sword1/sword1.h
parent400ee8c461e8060393b62be639c27dd3820dccd4 (diff)
downloadscummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.gz
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.tar.bz2
scummvm-rg350-51933629d1f1a17839ddbb75b2b619effe117abb.zip
Changed foo(void) to foo() in almost all non-backend source files
svn-id: r45616
Diffstat (limited to 'engines/sword1/sword1.h')
-rw-r--r--engines/sword1/sword1.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/sword1/sword1.h b/engines/sword1/sword1.h
index 4877f99582..b3d7aee717 100644
--- a/engines/sword1/sword1.h
+++ b/engines/sword1/sword1.h
@@ -75,7 +75,7 @@ public:
SwordEngine(OSystem *syst);
virtual ~SwordEngine();
static SystemVars _systemVars;
- void reinitialize(void);
+ void reinitialize();
uint32 _features;
@@ -107,14 +107,14 @@ protected:
private:
void delay(int32 amount);
- void checkCdFiles(void);
- void checkCd(void);
+ void checkCdFiles();
+ void checkCd();
void showFileErrorMsg(uint8 type, bool *fileExists);
void flagsToBool(bool *dest, uint8 flags);
- void reinitRes(void); //Reinits the resources after a GMM load
+ void reinitRes(); //Reinits the resources after a GMM load
- uint8 mainLoop(void);
+ uint8 mainLoop();
Common::Point _mouseCoord;
uint16 _mouseState;