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/make!.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/make!.cpp')
-rw-r--r-- | engines/avalanche/make!.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/avalanche/make!.cpp b/engines/avalanche/make!.cpp index a4cf27801f..4a4b274009 100644 --- a/engines/avalanche/make!.cpp +++ b/engines/avalanche/make!.cpp @@ -38,14 +38,12 @@ string x; boolean subpix(integer x, integer y) { boolean subpix_result; - ; subpix_result = getpixel(x, y) == 15; return subpix_result; } byte pixel(integer x, integer y) { byte pixel_result; - ; pixel_result = (byte)( subpix(x * 4, y * 2) || subpix(x * 4 + 1, y * 2) || @@ -61,7 +59,6 @@ byte pixel(integer x, integer y) { int main(int argc, const char *argv[]) { pio_initialize(argc, argv); - ; gd = 3; gm = 1; initgraph(gd, gm, "o:"); @@ -76,7 +73,6 @@ int main(int argc, const char *argv[]) { assign(t, "d:avalot.txt"); rewrite(t); for (gm = 1; gm <= 36; gm ++) { - ; x = ""; for (gd = 1; gd <= 106; gd ++) switch (getpixel(gd, gm * 2 + 181) * 2 + getpixel(gd, gm * 2 + 182)) { |