diff options
| author | Franklin Wei <git@fwei.tk> | 2017-02-12 20:26:17 -0500 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2017-02-12 20:36:31 -0500 |
| commit | e4a04fa105b2e1349693b68d7088d9bbdd91d19b (patch) | |
| tree | fcbd19cb331285a61281a45e9709c7ce3af16717 | |
| parent | eaf6aad690927ab0abfaae5276ef6561b334f803 (diff) | |
| download | rockbox-e4a04fa105b2e1349693b68d7088d9bbdd91d19b.zip rockbox-e4a04fa105b2e1349693b68d7088d9bbdd91d19b.tar.gz rockbox-e4a04fa105b2e1349693b68d7088d9bbdd91d19b.tar.bz2 rockbox-e4a04fa105b2e1349693b68d7088d9bbdd91d19b.tar.xz | |
xworld: get rid of annoying warning
Change-Id: I9faf00a97d0718efb0e4667018e9ff81ba80ee83
| -rw-r--r-- | apps/plugins/xworld/engine.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/xworld/engine.c b/apps/plugins/xworld/engine.c index 3a4ddfb..b09e320 100644 --- a/apps/plugins/xworld/engine.c +++ b/apps/plugins/xworld/engine.c @@ -169,7 +169,8 @@ bool engine_loadStringTable(struct Engine* e) * this gives verbose warnings while loadFontFile doesn't because the font looks similar * enough to pass for the "original", but the strings don't */ - warning("Unable to find string table, falling back to alternate strings"); + /* FW 2017-2-12: eliminated obnoxious warning */ + /*warning("Unable to find string table, falling back to alternate strings");*/ goto fail; } |