mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-06 06:15:04 +00:00
(svn r23993) -Cleanup: remove some disable directives from the NFO as they aren't needed anymore with newer GRFCodec/NFORenum
This commit is contained in:
parent
974a08bf60
commit
7893ef7b1c
12
config.lib
12
config.lib
@ -3120,9 +3120,9 @@ detect_grfcodec() {
|
||||
log 2 " returned $version"
|
||||
log 2 " exit code $ret"
|
||||
|
||||
if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "904" ]; then
|
||||
if [ -n "$version" ] && [ "$version" -lt "904" ]; then
|
||||
log 1 "checking grfcodec... needs at least version 5.1.4 (r904), disabled"
|
||||
if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "913" ]; then
|
||||
if [ -n "$version" ] && [ "$version" -lt "913" ]; then
|
||||
log 1 "checking grfcodec... needs at least version 5.1.4 (r913), disabled"
|
||||
else
|
||||
log 1 "checking grfcodec... not found"
|
||||
fi
|
||||
@ -3162,9 +3162,9 @@ detect_nforenum() {
|
||||
log 2 " returned $version"
|
||||
log 2 " exit code $ret"
|
||||
|
||||
if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "846" ]; then
|
||||
if [ -n "$version" ] && [ "$version" -lt "846" ]; then
|
||||
log 1 "checking nforenum... needs at least version 5.1.3 (r846), disabled"
|
||||
if [ -z "$version" ] || [ "$ret" != "0" ] || [ "$version" -lt "913" ]; then
|
||||
if [ -n "$version" ] && [ "$version" -lt "913" ]; then
|
||||
log 1 "checking nforenum... needs at least version 5.1.4 (r913), disabled"
|
||||
else
|
||||
log 1 "checking nforenum... not found"
|
||||
fi
|
||||
|
@ -14,13 +14,6 @@
|
||||
// allowing it to be used.
|
||||
//
|
||||
|
||||
//
|
||||
// -- NFO Renum 'settings' --
|
||||
// Do not make nforenum warn about the fact that we use a reserved GRF ID
|
||||
// @@WARNING DISABLE 101
|
||||
// -- End of NFO Renum 'settings' --
|
||||
//
|
||||
|
||||
//
|
||||
// Number of sprites, it is wrong, but GRFcodec automagically gets it right.
|
||||
//
|
||||
|
@ -5,12 +5,6 @@
|
||||
// OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
||||
// OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
// -- NFO Renum 'settings' --
|
||||
// Do not make nforenum warn about the fact that we use more sprites.
|
||||
// We are the 'authority' on how many sprites may be used.
|
||||
// @@WARNING DISABLE 60
|
||||
// -- End of NFO Renum 'settings' --
|
||||
//
|
||||
-1 * 0 0C "OpenTTD GUI graphics"
|
||||
-1 * 3 05 15 A2
|
||||
@ -176,8 +170,3 @@
|
||||
-1 sprites/openttdgui.png 8bpp 194 440 13 10 0 -2 normal
|
||||
-1 sprites/openttdgui.png 8bpp 215 440 9 10 0 0 normal
|
||||
-1 sprites/openttdgui.png 8bpp 232 440 8 10 0 0 normal
|
||||
|
||||
// -- NFO Renum 'settings' --
|
||||
// Undo disabling the warning
|
||||
// @@WARNING ENABLE 60
|
||||
// -- End of NFO Renum 'settings' --
|
||||
|
@ -5,13 +5,6 @@
|
||||
// OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
||||
// OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
// See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
|
||||
//
|
||||
// -- NFO Renum 'settings' --
|
||||
// Do not make nforenum warn about the fact that we use an incorrect number of shores
|
||||
// @@WARNING DISABLE 60
|
||||
// -- End of NFO Renum 'settings' --
|
||||
//
|
||||
|
||||
-1 * 6 07 83 01 \7! 00 0C
|
||||
@ -66,10 +59,3 @@
|
||||
-1 sprites/shore.png 8bpp 82 264 64 31 -31 -8 normal
|
||||
-1 sprites/shore.png 8bpp 162 264 64 32 -31 -1 normal
|
||||
-1 sprites/shore.png 8bpp 242 264 64 31 -31 -8 normal
|
||||
|
||||
//
|
||||
// -- NFO Renum 'settings' --
|
||||
// Reset warning about incorrect number of shores
|
||||
// @@WARNING ENABLE 60
|
||||
// -- End of NFO Renum 'settings' --
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user