RamonUnch
RamonUnch
There are no such options indeed, Snapping is only stored for the lifetime of the window. This would be some kind of autosnap, not sure If I might implement this...
Related to: #336 #247
Would not it be enough to call `komorebic toggle-float` on a ahk script on Alt+Click? like this the window would be go to float mode and when you release Alt+Click...
I tried very simply this script alongside AltSnap ```ahk !LButton:: if GetKeyState("Alt") { alt_click_started = 1; MsgBox, Alt+Click Started } return !LButton Up:: if alt_click_started { alt_click_started = 0; MsgBox,...
I guess an additional sensitivity divisor could be added. This could also apply to chocolate-doom. It would add a setting in chocolate/crispy-doom.cfg and would not hurt any existing config. Maybe...
Unlimited would be even better indeed! especially if performance hit is minimal. Being able to use less memory on vanilla levels is also a plus.
Wow, it is amazing to see this kind of optimizations after 30 years of DOOM! I have a Pentium III @ 700MHz with Windows 98SE I can make some benchmarks...
> Boo. So I installed both PCEm and 86Box, assuming they'd be more accurate than DosBox. Well, I found that they really aren't. They just stupidly do simulated delays based...
for modulo by a power of two WC already makes the optimization IIRC.
If the only problem for switching to gcc is Tasm assembly then there are converters around here. such as a somewhat old perl script: http://www.devoresoftware.com/nomyso/ Tasm -> nasm I have...