Overview
Comment: | Some more additions to the picture loading function in main.c (not complete yet, though, nor tested yet) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
cae3f2d69d1ac534929630e0c9c18ef6 |
User & Date: | user on 2018-03-26 23:56:31 |
Other Links: | manifest | tags |
Context
2018-03-31
| ||
02:14 | Add key bindings and some other stuff check-in: c1ad4ad8cc user: user tags: trunk | |
2018-03-26
| ||
23:56 | Some more additions to the picture loading function in main.c (not complete yet, though, nor tested yet) check-in: cae3f2d69d user: user tags: trunk | |
2018-03-25
| ||
22:11 | Start writing main program check-in: 6b70d94215 user: user tags: trunk | |
Changes
Modified main.c from [798f04dbcc] to [e6b0d2c360].
︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + | #include "cursorshapes.h" #include "pcfont.h" static const char schema[]= "PRAGMA APPLICATION_ID(1296388936);" "PRAGMA RECURSIVE_TRIGGERS(1);" "CREATE TABLE IF NOT EXISTS `USERCACHEINDEX`(`ID` INTEGER PRIMARY KEY, `NAME` TEXT, `LVLTIME` INT, `SOLTIME` INT, `VERSION` INT);" |
︙ | |||
137 138 139 140 141 142 143 144 145 146 147 | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 | + + + + + - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | p+=pitch; ++f; } t++; if(!--len) return; } } static Uint16 decide_picture_size(int nwantsize,const Uint8*wantsize,const Uint16*havesize) { } static void load_pictures(void) { sqlite3_stmt*st=0; FILE*fp; Uint8 wantsize[32]; |
︙ |