Skip to content
Snippets Groups Projects
Commit 4b3652dd authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Force space before pointer stars... too weird without it.

I tried a space after too, but that's weird as well and easily
confused with multiplication at first look.
parent 65698853
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3509 passed
Showing
with 636 additions and 639 deletions
......@@ -457,16 +457,11 @@ conn_close(void)
}
enum failure_reason {
FAILURE_WHAT_FAILURE
,
FAILURE_RESOLVE
,
FAILURE_CANT_CREATE
,
FAILURE_CONNECT_ERROR
,
FAILURE_ABORTED
,
FAILURE_WHAT_FAILURE,
FAILURE_RESOLVE,
FAILURE_CANT_CREATE,
FAILURE_CONNECT_ERROR,
FAILURE_ABORTED,
FAILURE_DISCONNECTED
};
......
......@@ -13778,7 +13778,8 @@ do_rip_command(int level, int sublevel, int cmd, const char*rawargs)
fclose(icn);
break;
}
size_t row = pix->width / 8 + (pix->width & 7 ? 1 : 0);
size_t row = pix->width / 8
+ (pix->width & 7 ? 1 : 0);
uint8_t *planes = malloc(4 * row);
if (planes == NULL) {
free(pix->pixels);
......@@ -15053,7 +15054,8 @@ draw_glyph(uint8_t ch)
if (amiga_font->fontSpaceOffset == 0)
fs = amiga_font->xsize;
else
fs = htons(*(uint16_t*)(&fd[off + amiga_font->fontSpaceOffset + (ch - amiga_font->first) * 2]));
fs =
htons(*(uint16_t *)(&fd[off + amiga_font->fontSpaceOffset + (ch - amiga_font->first) * 2]));
if (amiga_font->kernOffset == 0)
fk = 0;
else
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment