diff options
author | Max Horn | 2005-09-03 19:59:33 +0000 |
---|---|---|
committer | Max Horn | 2005-09-03 19:59:33 +0000 |
commit | 3f2286031a2e67e28a2085ee79013a78728ef40a (patch) | |
tree | a852e60dcf4b20c30ec0671b9ab9d6069ecc1302 /common | |
parent | 587053118445a1ca3abf849070ab22a25ca2e467 (diff) | |
download | scummvm-rg350-3f2286031a2e67e28a2085ee79013a78728ef40a.tar.gz scummvm-rg350-3f2286031a2e67e28a2085ee79013a78728ef40a.tar.bz2 scummvm-rg350-3f2286031a2e67e28a2085ee79013a78728ef40a.zip |
Avoid putting non-ASCII chars into source files
svn-id: r18761
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp index 7db2998e4f..2fb0a19cde 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -124,7 +124,7 @@ const LanguageDescription g_languages[] = { {"ru", "Russian", RU_RUS}, {"cz", "Czech", CZ_CZE}, {"nl", "Dutch", NL_NLD}, - {"nb", "Norwegian Bokmål", NB_NOR}, + {"nb", "Norwegian Bokm\xE5l", NB_NOR}, {0, 0, UNK_LANG} }; |