Quote:
Originally Posted by NorseGodTyr
swprintf_s to swprintf
|
Which means your buffer is messed up or it exceeds limit, so its no good to modify it to
swprintf.
swprintf_s is limited by the dest buffer size that you specify so if you exceed it, you should be getting that error.
While
swprintf just fills the dest buffer with the same size of the source, so it doesn't really care if it exceeds the dest buffer size, AKA if source size is greater than dest size, you'll modify bytes that don't really belong to your dest buffer, which is not safe
AT ALL.
That's probably why swprintf is not considered safe.
So, you can try increasing the buffer size.
Quote:
Originally Posted by irockalone
any help?
|
You seem to miss includes somehow or VC packages.
Quote:
Originally Posted by *Deadly
Is it possible to use some other color like the Pink, Green and Blue notifications on the middle of the screen?
|
Should be possible, but its not related to this topic. Have a look at resinfo files as well, the color could be there as well.
Quote:
Originally Posted by *Deadly
when I tried to change the hex color of ShowBlueNotify or Pink to something else and build, it started crashing my client the unique appears.
|
You must've modified something else that isn't really related to it.