Kristine1975

Results 9 issues of Kristine1975

If this `#define` is to be trusted, this is BRender 1.3.0: https://github.com/foone/BRender-1997/blob/4e319d61ee474cc5536ef52fe254c2d327d5ea98/inc/brender.h#L19

This function could be simplified a bit: https://github.com/lemire/fast_float/blob/7eae925b51fd0f570ccd5c880c12e3e27a23b86f/include/fast_float/ascii_number.h#L27 replace its implementation with: `return ((val & 0xF0F0F0F0F0F0F0F0u) & (val + 0x0606060606060606u)) == 0x3030303030303030u;`

Some of the following character constants don't have a right apostrophe, e.g. `'F` instead of `'F'`: https://github.com/raspberrypi/pico-bootrom/blob/ef22cd8ede5bc007f81d7f2416b48db90f313434/bootrom/bootrom_rt0.S#L210-L219 For some reason this nevertheless assembles correctly?

It *has* to exist somewhere, if only to test the decoder: https://github.com/raspberrypi/pico-extras/blob/77eae2836638baf2f61b321eb61125da99bb4445/README.md?plain=1#L23

According to the comment `boot2_w25q080.S`, upon entry `lr` is `0x10000100`: https://github.com/raspberrypi/pico-sdk/blob/2062372d203b372849d573f252cf7c6dc2800c0a/src/rp2_common/boot_stage2/boot2_w25q080.S#L95-L96 According to the comment in `exit_from_boot2.S` however, it is zero, and that is what the code checks for: https://github.com/raspberrypi/pico-sdk/blob/2062372d203b372849d573f252cf7c6dc2800c0a/src/rp2_common/boot_stage2/asminclude/boot2_helpers/exit_from_boot2.S#L12-L13...

(Thank you for your plugin, it's exactly what I need!) Notepad++ v8.3.3 64 Bit on Windows 10, with Explorer Plugin 1.9.4.0. In the Explorer options I have selected "View 'Long'...

I found these fonts on the ARPL (Apple Reference and Presentations Library) CD v 3.0 from around 1990: [Miscellaneous Fonts.sit.zip](https://github.com/JohnDDuncanIII/macfonts/files/13394885/Miscellaneous.Fonts.sit.zip) (.sit in .zip, as Github doesn't accept .sit archives and...

The generated picture could look like an excerpt from the dialogue. Options could include: * the skill/character speaking * when it involves a die check, the difficulty and whether the...

The example code in README.md aims to test the `+=` operator of `safe_umx`, but because it adds 42 to 0, it would also pass if the operator was (incorrectly) implemented...