Free Hero Mesh

Check-in [cae837d7b3]
Login
This is a mirror of the main repository for Free Hero Mesh. New tickets and changes will not be accepted at this mirror.
Overview
Comment:Add a missing "break" in the handling of popup messages
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: cae837d7b3c710fba841986810c03b1589160884
User & Date: user on 2021-03-23 07:29:49
Other Links: manifest | tags
Context
2021-03-23
20:45
Add ARCHITECTURE and README files. check-in: 667b8828b3 user: user tags: trunk
07:29
Add a missing "break" in the handling of popup messages check-in: cae837d7b3 user: user tags: trunk
05:18
Implement %R substitution for roman numbers, and do not throw a type mismatch error during string substitution check-in: ca9c200f64 user: user tags: trunk
Changes

Modified picture.c from [9877da8adc] to [370dd766bc].

775
776
777
778
779
780
781

782
783
784
785
786
787
788
      if(*p) p++;
      x+=24;
      break;
    case 31:
      pop_char(x,y,li+ln,c,*p);
      if(*p) p++;
      x+=8;

    default:
      pop_char(x,y,li+ln,c,p[-1]);
      x+=8;
      break;
  }
  SDL_UnlockSurface(screen);
}







>







775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
      if(*p) p++;
      x+=24;
      break;
    case 31:
      pop_char(x,y,li+ln,c,*p);
      if(*p) p++;
      x+=8;
      break;
    default:
      pop_char(x,y,li+ln,c,p[-1]);
      x+=8;
      break;
  }
  SDL_UnlockSurface(screen);
}