diff options
author | uruk | 2013-06-18 11:50:18 +0200 |
---|---|---|
committer | uruk | 2013-06-18 11:50:18 +0200 |
commit | f974bccbb0071c61521f072ecf803cb40910e8ab (patch) | |
tree | dc02d99c06d3b9c11e68f080de2c50b75f03f3ae /engines/avalanche/charmap.cpp | |
parent | 38bc20a0763f0f83ea3c0a94a68a1edea0d08514 (diff) | |
download | scummvm-rg350-f974bccbb0071c61521f072ecf803cb40910e8ab.tar.gz scummvm-rg350-f974bccbb0071c61521f072ecf803cb40910e8ab.tar.bz2 scummvm-rg350-f974bccbb0071c61521f072ecf803cb40910e8ab.zip |
AVALANCHE: Remove empty lines with only ";" characters in them.
Diffstat (limited to 'engines/avalanche/charmap.cpp')
-rw-r--r-- | engines/avalanche/charmap.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/avalanche/charmap.cpp b/engines/avalanche/charmap.cpp index d599ef5881..c970e1a4c1 100644 --- a/engines/avalanche/charmap.cpp +++ b/engines/avalanche/charmap.cpp @@ -38,17 +38,13 @@ pointer where; byte w, fv, ff, num; int main(int argc, const char *argv[]) { pio_initialize(argc, argv); - ; getintvec(0x1f, where); move(where, table, 1024); for (w = 128; w <= 255; w ++) { - ; output << w << NL; for (fv = 1; fv <= 8; fv ++) { - ; num = table.chars[w][fv]; for (ff = 1; ff <= 8; ff ++) { - ; if ((num & 128) == 0) output << " "; else output << "лл"; num = num << 1; |