diff options
| author | Max Horn | 2009-11-02 21:54:57 +0000 | 
|---|---|---|
| committer | Max Horn | 2009-11-02 21:54:57 +0000 | 
| commit | 51933629d1f1a17839ddbb75b2b619effe117abb (patch) | |
| tree | 7292b23e5ce3fb11e6b2bb360a3befbbf35b64d9 /engines/sky/text.cpp | |
| parent | 400ee8c461e8060393b62be639c27dd3820dccd4 (diff) | |
| download | scummvm-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/sky/text.cpp')
| -rw-r--r-- | engines/sky/text.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/sky/text.cpp b/engines/sky/text.cpp index 497c8a1ba3..66e03b08bc 100644 --- a/engines/sky/text.cpp +++ b/engines/sky/text.cpp @@ -71,7 +71,7 @@ Text::Text(Disk *skyDisk, SkyCompact *skyCompact) {  	}  } -Text::~Text(void) { +Text::~Text() {  	for (int i = FIRST_TEXT_BUFFER; i <= LAST_TEXT_BUFFER; i++)  		if (SkyEngine::_itemList[i]) {  			free(SkyEngine::_itemList[i]); @@ -416,7 +416,7 @@ void Text::changeTextSpriteColour(uint8 *sprData, uint8 newCol) {  			sprData[cnt] = newCol;  } -uint32 Text::giveCurrentCharSet(void) { +uint32 Text::giveCurrentCharSet() {  	return _curCharSet;  } | 
