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/ss_clock.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/ss_clock.cpp')
-rw-r--r-- | engines/avalanche/ss_clock.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/avalanche/ss_clock.cpp b/engines/avalanche/ss_clock.cpp index aa74b806ed..1ac8763234 100644 --- a/engines/avalanche/ss_clock.cpp +++ b/engines/avalanche/ss_clock.cpp @@ -46,7 +46,6 @@ boolean test; boolean the_cows_come_home() { registers rmove, rclick; boolean the_cows_come_home_result; - ; rmove.ax = 11; intr(0x33, rmove); rclick.ax = 3; @@ -64,12 +63,10 @@ string time1() { varying_string<2> hh, mm, ss; char ampm; string time1_result; - ; gettime(h, m, s, s1); if (h < 12) ampm = 'a'; else { - ; ampm = 'p'; if (h == 0) h = 12; else h -= 12; /* 24-hr adjustment */ @@ -83,7 +80,6 @@ string time1() { int main(int argc, const char *argv[]) { pio_initialize(argc, argv); - ; test = the_cows_come_home(); gm = registerbgidriver(&egavgadriverproc); gd = 3; @@ -105,7 +101,6 @@ int main(int argc, const char *argv[]) { if (count > 0) count -= 1; { pointtype &with = pages[cp]; - ; if (count == 0) bar(with.x, with.y, with.x + width, with.y + height); with.x = xx; |