Differences From Artifact [f776852317]:
- File
src/editing.m
— part of check-in
[6b85eefc85]
at
2025-03-23 02:47:40
on branch trunk
— Remove loop[ijkl]
They confused clang-format a lot. (user: js, size: 13646) [annotate] [blame] [check-ins using]
To Artifact [6ba0a980d9]:
- File src/editing.m — part of check-in [b5bfe2af86] at 2025-03-23 02:59:37 on branch trunk — Remove u{char,short,int} (user: js, size: 13654) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
323 324 325 326 327 328 329 | void tofronttex() // maintain most recently used of the texture lists when applying // texture { for (int i = 0; i < 3; i++) { int c = curedittex[i]; if (c >= 0) { | | | 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 | void tofronttex() // maintain most recently used of the texture lists when applying // texture { for (int i = 0; i < 3; i++) { int c = curedittex[i]; if (c >= 0) { unsigned char *p = hdr.texlists[i]; int t = p[c]; for (int a = c - 1; a >= 0; a--) p[a + 1] = p[a]; p[0] = t; curedittex[i] = -1; } } |
︙ | ︙ |