diff options
author | Max Horn | 2007-04-25 19:31:23 +0000 |
---|---|---|
committer | Max Horn | 2007-04-25 19:31:23 +0000 |
commit | 00b9bc7b36682365e64d710b4e843659bef373da (patch) | |
tree | 27f48e6cb51c37d595a6dd04d9fc1d773f4f766c /engines/scumm/he | |
parent | 8306e0ebe5bddd5945bdfb436fcfb7148160e029 (diff) | |
download | scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.gz scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.tar.bz2 scummvm-rg350-00b9bc7b36682365e64d710b4e843659bef373da.zip |
Removing lots of superfluous semicola (see mail by David Weinehall on scummvm-devel)
svn-id: r26594
Diffstat (limited to 'engines/scumm/he')
-rw-r--r-- | engines/scumm/he/logic_he.h | 10 | ||||
-rw-r--r-- | engines/scumm/he/resource_he.h | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/engines/scumm/he/logic_he.h b/engines/scumm/he/logic_he.h index e0f70ff52a..1f2303da1f 100644 --- a/engines/scumm/he/logic_he.h +++ b/engines/scumm/he/logic_he.h @@ -40,11 +40,11 @@ public: int getFromArray(int arg0, int idx2, int idx1); void putInArray(int arg0, int idx2, int idx1, int val); - void beforeBootScript(void) {}; - void initOnce() {}; - void startOfFrame() {}; - void endOfFrame() {}; - void processKeyStroke(int keyPressed) {}; + void beforeBootScript(void) {} + void initOnce() {} + void startOfFrame() {} + void endOfFrame() {} + void processKeyStroke(int keyPressed) {} virtual int versionID(); virtual int32 dispatch(int op, int numArgs, int32 *args); diff --git a/engines/scumm/he/resource_he.h b/engines/scumm/he/resource_he.h index c04055962e..411dd375e2 100644 --- a/engines/scumm/he/resource_he.h +++ b/engines/scumm/he/resource_he.h @@ -118,10 +118,10 @@ public: void setCursor(int id); - virtual int extractResource(int id, byte **buf) { return 0; }; + virtual int extractResource(int id, byte **buf) { return 0; } virtual int convertIcons(byte *data, int datasize, byte **cursor, int *w, int *h, int *hotspot_x, int *hotspot_y, int *keycolor, - byte **palette, int *palSize) { return 0; }; + byte **palette, int *palSize) { return 0; } enum { MAX_CACHED_CURSORS = 10 @@ -154,7 +154,7 @@ public: class Win32ResExtractor : public ResExtractor { public: Win32ResExtractor(ScummEngine_v70he *scumm); - ~Win32ResExtractor() {}; + ~Win32ResExtractor() {} int extractResource(int id, byte **data); void setCursor(int id); int convertIcons(byte *data, int datasize, byte **cursor, int *w, int *h, |