Nagy Tibor

Results 18 comments of Nagy Tibor

To be honest I moved on from this experiment. I kinda lost interest in C64 programming for a while after I learned that CSDb banned my account for inactivity and...

You don't need `core`, just the `mrustc` binary in a state to be able to spit out a `.c` source. After it produced that C source it's gonna fail with...

They are compiler intrinsics, MRustc recognizes those and directly emits `memcpy` and friends on them without needing anything from `core` for compiling the C source.

No idea then. Are you sure it didn't produce any C file in your working directory _before_ throwing that error? Mrustc is expected to fail after codegen in the compilation...

Some knob widget prototypes. https://github.com/xTibor/egui-knobs ![20220518_211656_Knobs](https://user-images.githubusercontent.com/1627292/169144407-2a4ad191-8584-4a3a-8b42-70891c11f627.png)

Not your issue, it's some kind of KWin race condition bug. Trivial to reproduce by hammering the window resizing functions: https://user-images.githubusercontent.com/1627292/106954506-303a0080-6734-11eb-9681-07e63c354aef.mp4

The failing `S8 (U16 load)` tests may be the most visible one among these, I have a feeling those ones are causing the striped graphics corruptions in Doom 2 and...

In my opinion the only interesting and currently untested part of this string are the double acute accented characters, ő (U+0151) and ű (U+0171). Would be nice to have at...

Oh, sorry for mixing these things up in the example. I just assumed something's wrong with the crate because it acted weird in this case and didn't throw errors at...

Fixed by #1967. You can now plug your favorite expression evaluator library into `.custom_parser()` and have 100% the same behavior as in my video above. ```rust ui.add( DragValue::new(&mut self.my_value) .custom_parser(|s|...