1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-28 08:59:09 +00:00

(svn r631) Merge r440, r444, r485, r630 to trunk:

r440
Move screenshot function declarations to new file screenshot.h
Clean up screenshot.c a bit, mostly whitespace, alloca() -> malloc() and checking return values
r485
Remove unused field from struct ScreenshotFormat
This commit is contained in:
tron
2004-11-15 19:25:59 +00:00
parent fb4b5fa841
commit 450c669eb2
8 changed files with 111 additions and 53 deletions

View File

@@ -4,6 +4,7 @@
#include "town.h"
#include "vehicle.h"
#include "news.h"
#include "screenshot.h"
#define USE_TABLE(x) { assert(index < lengthof(x)); str = x[index]; break; }