Browse Source

caca-sharp: fix an ABI mismatch bug.

tags/v0.99.beta20
Sam Hocevar 10 years ago
parent
commit
e569ea4b33
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      caca-sharp/Canvas.cs

+ 1
- 1
caca-sharp/Canvas.cs View File

@@ -227,7 +227,7 @@ namespace Caca
SuppressUnmanagedCodeSecurity]
private static extern int caca_set_color_argb(IntPtr cv,
uint fg, uint bg);
public int setColorArgb(uint fg, uint bg)
public int setColorArgb(ushort fg, ushort bg)
{
return caca_set_color_argb(_c_cv, fg, bg);
}


Loading…
Cancel
Save