Skip to content

Commit

Permalink
Restore custom highlighting in more code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
exelotl authored and djedditt committed Feb 4, 2024
1 parent effcc39 commit 5a687e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/first.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,10 +373,10 @@ Above, I noted that use of non-ints can be problematic. Because this bad habit i
( (x)>=(max) ? ((max)-1) : ( ((x)<(min)) ? (min) : (x) ) )

// Change brightness of a palette (kinda) (70)
void pal_brightness(u16 *pal, <span class="rem">u16</span> size, <span class="rem">s8</span> bright)
void pal_brightness(u16 *pal, <span class="rem wavy">u16</span> size, <span class="rem wavy">s8</span> bright)
{
<span class="rem">u16</span> ii;
<span class="rem">s8</span> r, g, b;
<span class="rem wavy">u16</span> ii;
<span class="rem wavy">s8</span> r, g, b;

for(ii=0; ii&lt;size; ii++)
{
Expand Down

0 comments on commit 5a687e7

Please sign in to comment.