Peter Atashian
Peter Atashian
@DenisKolodin There are alternative libraries that offer similar functionality but are up to date, such as https://github.com/danburkert/memmap-rs
What happens if you change `crate-type = ["dylib"]` to `crate-type = ["cdylib"]`?
And GatherBuddy *did* show it fine in the fish timer window when actually fishing for it. It was only the fish tab in the main GatherBuddy window that was wrong.
This may be a case of https://github.com/rust-lang/rfcs/issues/1342, especially since it specifically does not work on Windows.
>stdc++ cannot be linked in MSVC Statically linking together MSVC and MinGW code is not supported at all whatsoever and will almost always break.
Hmmm, it uses the gcc crate to build things, and that should know how to handle MSVC just fine. I'll investigate more later perhaps.
@norru Since this uses the gcc crate to handle building and linking the C++, that automatically handles linking the C++ standard library. https://github.com/alexcrichton/gcc-rs/blob/master/src/lib.rs#L950-L963 So definitely removing that `#[link(name = "stdc++")]`...
>I'd also like to use an epic Since when does Rust have epics?
There's no way to minimize a window in SFML to begin with, so this cannot be solved with user code. Almost every single video game I've played in fullscreen automatically...
There's two ways which SFML could handle it, and I'd be fine with either as long as it is documented properly. 1. Minimize the fullscreen application and do a full...