Mercurial > hg > openttd
diff src/genworld.cpp @ 9476:bba7a506af6d draft
(svn r13411) -Codechange: remove the return value from the thread procs because it is never used.
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sun, 08 Jun 2008 10:51:36 +0000 |
parents | 512ea64da840 |
children | e67ab3c32309 |
line wrap: on
line diff
--- a/src/genworld.cpp +++ b/src/genworld.cpp @@ -85,7 +85,7 @@ /** * The internal, real, generate function. */ -static void * CDECL _GenerateWorld(void *arg) +static void _GenerateWorld(void *arg) { try { _generating_world = true; @@ -170,7 +170,6 @@ _generating_world = false; throw; } - return NULL; } /**