Sophie Kirschner
Sophie Kirschner
Video of the `jesuMusic` example ROM: https://www.youtube.com/watch?v=3aYsL-UQp8M The music data in `jesuMusic.zig` was originally composed in Dn-FamiTracker, before being transcribed to the format used in the Zig code there -...
This issue relates to the same Discord discussion as #26. (Thank you Sono on the gbadev Discord for being a major help in diagnosing this problem!) https://discord.com/channels/768759024270704641/777683711453298698/1378782104212607176 The problem: ROMs...
One thing I've been working on is another module for interfacing with the GBA's sound registers. I ran into an interesting emulator-dependent bug that turned out to be because of...
Blocked by #27 This allows all examples in the repository to be built with 0.14.0+, though the built ROMs have junk code at the entry point due to some change...
A project I've been contributing to uses zigimg as a build.zig dependency to load images as part of an asset pipeline. By exporting zigimg itself in build.zig, this project can...
**Describe the bug** When a type union expression spans multiple lines, the operatorPosition setting is not respected. I'm aware that TypeScript documentation for union types uses `|` operators at the...
Additional formatting options for multi-line ternary expressions, e.g. always enclose in parentheses
I consider these to be acceptable options for writing a ternary expression: ```ts // Single line (for shorter expressions) let x = condition ? trueOperand : falseOperand; // Multiple line...
I prefer to write typeof expressions like `typeof(value)`, rather than `typeof value` or `typeof (value)`, but if there is a configuration option to allow or enforce the former I wasn't...
Currently I have code like this. This instance is written as an item in a function's multi-line argument list, hence the trailing comma: ```ts (args...) => myFunction({ prop1: etc, prop2:...
**Describe the bug** dprint-plugin-typescript version: 0.93.2 & latest compiled from main branch I want the operands of a binary operator expression spread across multiple lines to always have the same...