Changed foo(void) to foo() in almost all non-backend source files

svn-id: r45616
This commit is contained in:
Max Horn 2009-11-02 21:54:57 +00:00
parent 400ee8c461
commit 51933629d1
284 changed files with 1428 additions and 1428 deletions

View file

@ -32,7 +32,7 @@
#ifdef _WIN32_WCE
// This is required for the debugger attachment
extern bool isSmartphone(void);
extern bool isSmartphone();
#endif
#ifdef __PLAYSTATION2__
@ -178,7 +178,7 @@ uint RandomSource::getRandomNumber(uint max) {
return _randSeed % (max + 1);
}
uint RandomSource::getRandomBit(void) {
uint RandomSource::getRandomBit() {
_randSeed = 0xDEADBF03 * (_randSeed + 1);
_randSeed = (_randSeed >> 13) | (_randSeed << 19);
return _randSeed & 1;