diff options
author | Curtis McEnroe | 2018-08-06 14:19:52 -0400 |
---|---|---|
committer | Curtis McEnroe | 2018-08-06 14:19:52 -0400 |
commit | d6fb797b11aa6dd031032faf425be3ce5a69661d (patch) | |
tree | e348e4ec6ed53a9700219336fd6a3e3733093a56 /chat.c | |
parent | ea4c70dae5f548ec3f1346f7e54794be0187a95b (diff) |
Use wchar_t strings for all of UI
vaswprintf is a nightmare.
Diffstat (limited to 'chat.c')
-rw-r--r-- | chat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat.c b/chat.c index 30fe272..ba83907 100644 --- a/chat.c +++ b/chat.c @@ -78,7 +78,7 @@ int main(int argc, char *argv[]) { signal(SIGINT, sigint); uiInit(); - uiLog("Traveling..."); + uiLog(L"Traveling..."); uiDraw(); int sock = ircConnect(host, port, webPass); |