aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/testblit.cpp
diff options
context:
space:
mode:
authoruruk2013-06-18 10:23:29 +0200
committeruruk2013-06-18 10:23:29 +0200
commit38bc20a0763f0f83ea3c0a94a68a1edea0d08514 (patch)
tree8d71d5d2dec96e83e2fcce7c5378e9f2da94130e /engines/avalanche/testblit.cpp
parenta3025b8dad7abfe845c57aee3703451c223fc2e6 (diff)
downloadscummvm-rg350-38bc20a0763f0f83ea3c0a94a68a1edea0d08514.tar.gz
scummvm-rg350-38bc20a0763f0f83ea3c0a94a68a1edea0d08514.tar.bz2
scummvm-rg350-38bc20a0763f0f83ea3c0a94a68a1edea0d08514.zip
AVALANCHE: Use Artistic Style.
Diffstat (limited to 'engines/avalanche/testblit.cpp')
-rw-r--r--engines/avalanche/testblit.cpp74
1 files changed, 41 insertions, 33 deletions
diff --git a/engines/avalanche/testblit.cpp b/engines/avalanche/testblit.cpp
index 5fe1e3aca1..b58ddc628d 100644
--- a/engines/avalanche/testblit.cpp
+++ b/engines/avalanche/testblit.cpp
@@ -11,7 +11,7 @@
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
@@ -34,43 +34,51 @@ const integer borland = xorput;
const integer mb1 = 2; /* 2 */
const integer mb2 = 4; /* 4 */
-integer gd,gm;
+integer gd, gm;
pointer p;
word s;
-void mblit()
-{
- byte bit; longint st;
-;
- st=ttp;
- for( bit=0; bit <= 3; bit ++)
- {;
- port[0x3c4]=mb1;
- portw[0x3ce]=copyput*256+3;
- portw[0x3ce]=0x205;
- port[0x3ce]=0x8;
- port[0x3c5]=1 << bit;
- port[0x3cf]=bit;
- move(mem[longint(0xa000)*st],mem[0xa000*0],7200);
- }
+void mblit() {
+ byte bit;
+ longint st;
+ ;
+ st = ttp;
+ for (bit = 0; bit <= 3; bit ++) {
+ ;
+ port[0x3c4] = mb1;
+ portw[0x3ce] = copyput * 256 + 3;
+ portw[0x3ce] = 0x205;
+ port[0x3ce] = 0x8;
+ port[0x3c5] = 1 << bit;
+ port[0x3cf] = bit;
+ move(mem[longint(0xa000)*st], mem[0xa000 * 0], 7200);
+ }
}
-int main(int argc, const char* argv[])
-{pio_initialize(argc, argv);
-;
- gd=3; gm=0; initgraph(gd,gm,"");
- settextstyle(1,0,7);
- for( gd=0; gd <= 1; gd ++)
- {;
- setactivepage(gd); setcolor(6*gd+6);
- outtextxy(0,0,chr(65+gd));
- }
- s=imagesize(0,0,90,90); setactivepage(0); getmem(p,s);
- getimage(0,0,90,90,p); putimage(100,100,p,0);
- setactivepage(1); getimage(0,0,90,90,p); setactivepage(0);
- putimage(100,100,p,borland);
- mblit();
-return EXIT_SUCCESS;
+int main(int argc, const char *argv[]) {
+ pio_initialize(argc, argv);
+ ;
+ gd = 3;
+ gm = 0;
+ initgraph(gd, gm, "");
+ settextstyle(1, 0, 7);
+ for (gd = 0; gd <= 1; gd ++) {
+ ;
+ setactivepage(gd);
+ setcolor(6 * gd + 6);
+ outtextxy(0, 0, chr(65 + gd));
+ }
+ s = imagesize(0, 0, 90, 90);
+ setactivepage(0);
+ getmem(p, s);
+ getimage(0, 0, 90, 90, p);
+ putimage(100, 100, p, 0);
+ setactivepage(1);
+ getimage(0, 0, 90, 90, p);
+ setactivepage(0);
+ putimage(100, 100, p, borland);
+ mblit();
+ return EXIT_SUCCESS;
}
} // End of namespace Avalanche. \ No newline at end of file