Browse Source

Use the wine unicode fix by default

Signed-off-by: falkTX <falktx@falktx.com>
tags/v1.0.0
falkTX 4 years ago
parent
commit
1ce9737cc8
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      README.md
  2. +2
    -2
      asio.c

+ 1
- 1
README.md View File

@@ -8,7 +8,7 @@ You can, for example, use with FLStudio under GNU/Linux systems (together with J
![Screenshot](screenshot.png)

For best results with Debian-based distributions,
enable the [KXStudio repositories](https://kx,studio/Repositories) and install WineASIO from there.
enable the [KXStudio repositories](https://kx.studio/Repositories) and install WineASIO from there.

### INSTALLATION



+ 2
- 2
asio.c View File

@@ -43,7 +43,7 @@
#include "objbase.h"
#include "mmsystem.h"
#include "winreg.h"
#ifndef WINE_NO_UNICODE
#ifdef WINE_WITH_UNICODE
#include "wine/unicode.h"
#endif

@@ -1434,7 +1434,7 @@ static int srate_callback(jack_nframes_t nframes, void *arg)
* Support functions
*/

#ifdef WINE_NO_UNICODE
#ifndef WINE_WITH_UNICODE
/* Funtion required as unicode.h no longer in WINE */
static WCHAR *strrchrW(const WCHAR* str, WCHAR ch)
{


Loading…
Cancel
Save