From 3b18fba385773139fe0b01f04cd3c208b64121e0 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 7 Jan 2005 08:07:24 +0000 Subject: (svn r1409) Simplify some preprocessor magic --- ttd.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'ttd.c') diff --git a/ttd.c b/ttd.c index 61680c112..6822f1637 100644 --- a/ttd.c +++ b/ttd.c @@ -527,16 +527,13 @@ void LoadIntroGame() // Generate a world. sprintf(filename, "%sopntitle.dat", _path.data_dir); - if (SaveOrLoad(filename, SL_LOAD) != SL_OK) + if (SaveOrLoad(filename, SL_LOAD) != SL_OK) { #if defined SECOND_DATA_DIR - { sprintf(filename, "%sopntitle.dat", _path.second_data_dir); if (SaveOrLoad(filename, SL_LOAD) != SL_OK) #endif GenerateWorld(1); // if failed loading, make empty world. -#if defined SECOND_DATA_DIR - } -#endif + } _opt.currency = _new_opt.currency; _pause = 0; -- cgit v1.2.3-54-g00ecf