Skip to content

Commit

Permalink
AVALANCHE: Made comments ASCII friendly
Browse files Browse the repository at this point in the history
The comments I introduced earlier (previusly case labels) have been
changed to avoid non-ASCII characters. The descriptions were taken
from an ISO 8859-1 manual page.
  • Loading branch information
Torbjörn Andersson committed Feb 12, 2014
1 parent 243bb0d commit e5281bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/avalanche/help.cpp
Expand Up @@ -103,10 +103,10 @@ void Help::switchPage(byte which) {
case 254:
text = Common::String("Esc");
break;
case 214: // 'Ö'
case 214: // Latin capital letter O with diaeresis
text = Common::String(24);
break;
case 216: // 'Ø'
case 216: // Latin capital letter O with stroke
text = Common::String(25);
break;
default:
Expand Down

0 comments on commit e5281bc

Please sign in to comment.