Hello everyone. I seem to have caused some strange problem I do not know how to fix. Frankly, I can't even seem to really pinpoint where it may be coming from so I'll do my best to describe it and then maybe you can tell me what part of my code I should examine first.
I was working on writing a chat client, and when I try to draw text to the screen I'll get missing characters. 'm' and 'a' are two that are frequently missing. Like typing the word "farmer" would end up displaying as "f r er" with holes where the characters should have been drawn.
On the server console that I am sending the string data to, I can see that characters aren't actually missing from the strings because they are being displayed correctly there.
What's even weirder is that if I send a message from another client, sometimes it will cause the characters that were missing to suddenly appear and a new set of characters will disappear.
I had no problems with my client until I tried to move most of the chat functionality to its own class. However, despite my best effort, I can't really find anything that would have caused this with my new class.