Fyren
Fyren
It seems like the keys for scrolling images with the keyboard are hardcoded as the arrow keys. They appear to override any other keybinds that are set. (This might only...
Within the last couple weeks, I've sometimes been getting duplicates of received messages. In my IRC client, it looks like this: ``` 13:15:00 funny 13:59:56 [13:15:00] funny ``` ``` 22:50:32...
I think the intent with the `dim.array.level` check was to error if the expression wasn't the last dimension in the array, but `level` holds how many levels are below. So...
On my Windows machine, the following fails an allocation at some point: `public void main() { int ultimate_power[2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2][2]; }` I think it was here: https://github.com/alliedmodders/sourcepawn/blob/840c2f934b3884faf02bb7eb614d2a41a2f2e945/compiler/array-helpers.cpp#L888
``` enum struct position { float x; float y; float z; } enum struct area { position min; position max; } static area a = { { 1.0, 2.0, 3.0...
If you do something like `public void OnPluginStart() { char arr[1024 * 64]; }`, then the VM (at least in recent versions) will report "instruction contained invalid parameter" (`SP_ERROR_INSTRUCTION_PARAM`) at...
Something like this: ``` void foo(MyEnum e) { } enum MyEnum { } ``` Will produce an error message like this: `error 181: function argument named 'e' differs from prototype`
I ended up with a map marker left behind by YARM even after turning off the map markers in settings (and waiting). Here's screenshots with [markers on](http://sheap.net/~fyren/yarm_1.png) and with [markers...
It's set up as a StopOption, but `parse_impl` specifically checks for it after the bailout would happen. ^f for `haltOnValue` and for `help_option_` in `parse_impl`. The result is you can...
A web page had markup similar to the following: ```html 10m 20m 30m ```` With this example, mousing over the "10m" shows a popup converting 10m^2 because of the 2...