Mark Jansen

Results 91 comments of Mark Jansen

> Error: The `add-path` command is disabled. Please upgrade to using Environment Files or opt into unsecure command execution by setting the `ACTIONS_ALLOW_UNSECURE_COMMANDS`

> .ico files just start with 3 zero bytes or something like that, would be trivial to do without external tools if all one cares about is not being confused...

I have created a module for [Windhawk](https://windhawk.net/) that provides this support for 2017 and 2019: https://windhawk.net/mods/lm-vs-solution-icon The icon generation code is based on this extension.

> @learn-more Interesting. Does it also load the solution-provided icon from the file? And can it handle VS 2022? (Now that VS 2019 shows a warning that it's no longer...

UI for my custom 6502 emulator. ![image](https://github.com/ocornut/imgui/assets/610685/a168cf2b-b851-43a3-a95a-e4a47d8fbae0) The machine being simulated here is the 6502 computer from Ben Eater (https://eater.net/6502 / https://www.youtube.com/watch?v=XlbPnihCM0E ) The software currently running in the emulator...

> Hello, > > I agree that ideally we would provide a demo of this, but I have an issue with the restructuring using a main loop function. > >...

For reference, this is how I handle this 'issue' now in a toy 6502 emulator: ```cpp void render() override { menu_bar(); ImGuiID dock = create_dockspace(); // if this returns non-zero,...

@OpenCppCoverage Is there something that I should improve here?

That works, until you move the function to other directories, because the relative paths will be relative to where the function is used, instead of where the function is defined.

> This isn't something that's on the roadmap for v5 currently (we would gladly accept PRs for something like this, though). What I personally do is use a table and...