This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
win32: use ANSI calls explicitly
If the environment forces the UNICODE define it will use the wrong call.
pull/75/head
Steve Lhomme
1 year ago
parent
ceed13243b
commit
3b4670c82c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
caca/driver/win32.c
+ 1
- 1
caca/driver/win32.c
View File
@@ -196,7 +196,7 @@ static int win32_end_graphics(caca_display_t *dp)
static int win32_set_display_title(caca_display_t *dp, char const *title)
{
SetConsoleTitle(title);
SetConsoleTitle
A
(title);
return 0;
}
Write
Preview
Loading…
Cancel
Save