~ubuntu-branches/ubuntu/karmic/gravitywars/karmic

« back to all changes in this revision

Viewing changes to blocks.c

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2003-06-12 13:31:00 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20030612133100-unu8ek7z4109neyb
Tags: 1.102-27
* debian/control:
  + Build-depend on libsdl1.2-dev (>= 1.2.5-8) because 1.2.5-7 had a broken
    shlibs file.
  + Removed the build-dependency on dpkg-dev since it is in build-essential.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
  vga_setpage(mask);
20
20
 
 
21
#ifdef USE_SDL
 
22
  if (1) {
 
23
#else
21
24
  if (adr < 45024) {
 
25
#endif
22
26
 
23
27
    /* NORMAL */
24
28
    address=vga_ptr+adr;
25
29
    for (yy=0; yy<=31; yy++) {
26
 
      for (xx=0; xx<=31; xx++) {
 
30
      memcpy(address,dp,32);
 
31
      address+=640;
 
32
      dp+=32;
 
33
   /* for (xx=0; xx<=31; xx++) {
27
34
        *(address++)=*(dp++);
28
35
      }
29
 
      address+=608;
 
36
      address+=608; */
30
37
    }
31
38
 
32
39
  }