summaryrefslogtreecommitdiff
path: root/newgrf.c
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-10-22 10:07:40 +0000
committerpeter1138 <peter1138@openttd.org>2006-10-22 10:07:40 +0000
commit8e3853f5ce9ec73e6a8e4fb50d796699c589ab8d (patch)
tree10ec6dc7780fd4f32d42ffd4a945909dd793064e /newgrf.c
parente260878f0991d1eb9e5f3c2ee177cc81edc2becb (diff)
downloadopenttd-8e3853f5ce9ec73e6a8e4fb50d796699c589ab8d.tar.xz
(svn r6894) - Codechange: Lower the verbosity level of some NewGRF warnings
Diffstat (limited to 'newgrf.c')
-rw-r--r--newgrf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/newgrf.c b/newgrf.c
index 86914b630..22286a4a0 100644
--- a/newgrf.c
+++ b/newgrf.c
@@ -1756,7 +1756,7 @@ static void FeatureMapSpriteGroup(byte *buf, int len)
/* If ``n-id'' (or ``idcount'') is zero, this is a ``feature
* callback''. */
if (idcount == 0) {
- grfmsg(GMS_WARN, "FeatureMapSpriteGroup: Feature callbacks not implemented yet.");
+ grfmsg(GMS_NOTICE, "FeatureMapSpriteGroup: Feature callbacks not implemented yet.");
return;
}
@@ -2576,11 +2576,11 @@ static void ParamSet(byte *buf, int len)
if (GB(data, 0, 8) == 0xFF) {
if (data == 0x0000FFFF) {
/* Patch variables */
- grfmsg(GMS_WARN, "ParamSet: Reading Patch variables unsupported.");
+ grfmsg(GMS_NOTICE, "ParamSet: Reading Patch variables unsupported.");
return;
} else {
/* GRF Resource Management */
- grfmsg(GMS_WARN, "ParamSet: GRF Resource Management unsupported.");
+ grfmsg(GMS_NOTICE, "ParamSet: GRF Resource Management unsupported.");
return;
}
} else {
@@ -2833,7 +2833,7 @@ static void ImportGRFSound(byte *buf, int len)
static void GRFImportBlock(byte *buf, int len)
{
if (_grf_data_blocks == 0) {
- grfmsg(GMS_WARN, "GRFImportBlock: Unexpected import block, skipping.");
+ grfmsg(GMS_NOTICE, "GRFImportBlock: Unexpected import block, skipping.");
return;
}
@@ -2922,7 +2922,7 @@ static void GRFDataBlock(byte *buf, int len)
const char *name;
if (_grf_data_blocks == 0) {
- grfmsg(GMS_WARN, "GRFDataBlock: unexpected data block, skipping.");
+ grfmsg(GMS_NOTICE, "GRFDataBlock: unexpected data block, skipping.");
return;
}