diff options
author | darkvater <darkvater@openttd.org> | 2005-01-03 20:20:25 +0000 |
---|---|---|
committer | darkvater <darkvater@openttd.org> | 2005-01-03 20:20:25 +0000 |
commit | 363dd7bdf054a725acf226a97698fcb35f1b3c3e (patch) | |
tree | 1b2ff0b5f4929c9de104aa2564082dd12267e4c4 | |
parent | a94fe04a9a96fa1c78314b5306435bd4b0a7bb94 (diff) | |
download | openttd-363dd7bdf054a725acf226a97698fcb35f1b3c3e.tar.xz |
(svn r1349) -Fix: [1093485] Dissappearing rocks in Scenario Editor
-rw-r--r-- | main_gui.c | 2 | ||||
-rw-r--r-- | ttd.vcproj | 139 |
2 files changed, 1 insertions, 140 deletions
diff --git a/main_gui.c b/main_gui.c index e06c8d486..6e8a5e04e 100644 --- a/main_gui.c +++ b/main_gui.c @@ -1205,7 +1205,7 @@ static void PlaceProc_RockyArea(uint tile) if (!IS_TILETYPE(tile, MP_CLEAR)) return; - _map5[tile] = (_map5[tile] & ~0x1C) | 8; + _map5[tile] = (_map5[tile] & ~0x1C) | 0xB; MarkTileDirtyByTile(tile); SndPlayTileFx(SND_1F_SPLAT, tile); } diff --git a/ttd.vcproj b/ttd.vcproj index 78160c983..5050af342 100644 --- a/ttd.vcproj +++ b/ttd.vcproj @@ -1253,142 +1253,6 @@ </File>
</Filter>
<Filter
- Name="Listings"
- Filter="*.cod">
- <File
- RelativePath="Release\ai.cod">
- </File>
- <File
- RelativePath="Release\aircraft_cmd.cod">
- </File>
- <File
- RelativePath="Release\clear_cmd.cod">
- </File>
- <File
- RelativePath="Release\command.cod">
- </File>
- <File
- RelativePath="Release\depot_gui.cod">
- </File>
- <File
- RelativePath="Release\disaster_cmd.cod">
- </File>
- <File
- RelativePath="Release\economy.cod">
- </File>
- <File
- RelativePath="Release\engine.cod">
- </File>
- <File
- RelativePath="Release\gfx.cod">
- </File>
- <File
- RelativePath="Release\goods.cod">
- </File>
- <File
- RelativePath="Release\graph_gui.cod">
- </File>
- <File
- RelativePath="Release\industry_cmd.cod">
- </File>
- <File
- RelativePath="Release\industry_gui.cod">
- </File>
- <File
- RelativePath="Release\landscape.cod">
- </File>
- <File
- RelativePath="Release\main_gui.cod">
- </File>
- <File
- RelativePath="Release\minilzo.cod">
- </File>
- <File
- RelativePath="Release\misc.cod">
- </File>
- <File
- RelativePath="Release\misc_cmd.cod">
- </File>
- <File
- RelativePath="Release\news_gui.cod">
- </File>
- <File
- RelativePath="Release\player_cmd.cod">
- </File>
- <File
- RelativePath="Release\player_gui.cod">
- </File>
- <File
- RelativePath="Release\players.cod">
- </File>
- <File
- RelativePath="Release\rail_cmd.cod">
- </File>
- <File
- RelativePath="Release\road_cmd.cod">
- </File>
- <File
- RelativePath="Release\saveload.cod">
- </File>
- <File
- RelativePath="Release\settings_gui.cod">
- </File>
- <File
- RelativePath="Release\ship_cmd.cod">
- </File>
- <File
- RelativePath="Release\smallmap_gui.cod">
- </File>
- <File
- RelativePath="Release\sound.cod">
- </File>
- <File
- RelativePath="Release\spritecache.cod">
- </File>
- <File
- RelativePath="Release\station_cmd.cod">
- </File>
- <File
- RelativePath="Release\strings.cod">
- </File>
- <File
- RelativePath="Release\town_cmd.cod">
- </File>
- <File
- RelativePath="Release\town_gui.cod">
- </File>
- <File
- RelativePath="Release\train_cmd.cod">
- </File>
- <File
- RelativePath="Release\train_gui.cod">
- </File>
- <File
- RelativePath="Release\tree_cmd.cod">
- </File>
- <File
- RelativePath="Release\ttd.cod">
- </File>
- <File
- RelativePath="Release\vehicle.cod">
- </File>
- <File
- RelativePath="Release\viewport.cod">
- </File>
- <File
- RelativePath="Release\water_cmd.cod">
- </File>
- <File
- RelativePath="Release\widget.cod">
- </File>
- <File
- RelativePath="Release\win32.cod">
- </File>
- <File
- RelativePath="Release\window.cod">
- </File>
- </Filter>
- <Filter
Name="Gui Source codes"
Filter="">
<File
@@ -2660,9 +2524,6 @@ RelativePath="table\landscape_sprite.h">
</File>
<File
- RelativePath="table\namegen.h">
- </File>
- <File
RelativePath="table\palettes.h">
</File>
<File
|