Nick Gammon
Nick Gammon
I found the same thing when compiling under 1.6.4 for the Due, but it compiled OK for a Uno. It looks like dtostrf is not in the Due library. Perhaps...
As mentioned [here](https://github.com/nickgammon/mushclient/issues/62) that is the intended behaviour. You are expected to set a wrap column such that you can view the output from the MUD. If you made it...
The "Wrap output at column number" is slightly misleadingly named. As the help explains if you click the Help button, when checked this wraps *at the previous space* (to not...
The width is right. The height is calculated by dividing the dynamically-obtained window height by the number of pixels per character in the chosen font. When the window is not...
GetInfo (241) gives you the output font height. GetInfo (280) gives you the output window height. For example: ```lua print (math.floor (GetInfo (280) / GetInfo (241))) ```
If you have NAWS activated, the client sends the NAWS information when it gets a "window resized" message from the operating system. For some reason it looks like it gets...
The client is written using MFC (Microsoft Foundation Libraries) so porting to Android etc. would be highly difficult. I don't believe you can get MFC on other platforms.
My friend "Fiendish" reports he had issues even converting the code to run under x64. There are possible problems with converting int to char, plus also the need for various...
Yes, a warning may help. It's a bit of an edge case I admit.
Yes, it is a pity the only reference to the type of data is incorrect. It is also a pity that the example shows **int** which reinforces the error: ```...