Differences From Artifact [7ea394ee1c]:
- File heromesh.h — part of check-in [13bc344828] at 2021-04-05 05:50:10 on branch trunk — Start to implement deferred movement (incomplete and untested so far). (user: user, size: 8583) [annotate] [blame] [check-ins using]
To Artifact [e799f3d4f3]:
- File heromesh.h — part of check-in [9959860889] at 2021-04-22 03:00:57 on branch trunk — Add possibility of additional code pages. (user: user, size: 8613) [annotate] [blame] [check-ins using]
︙ | |||
93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | + | extern SDL_Surface*screen; extern Uint16 picture_size; extern int left_margin; void init_palette(void); void init_screen(void); void load_pictures(void); void set_code_page(Uint16 n); // Use only when screen is unlocked void draw_picture(int x,int y,Uint16 img); void draw_cell(int x,int y); // Use only when screen is locked void draw_text(int x,int y,const unsigned char*t,int bg,int fg); |
︙ |