diff --git a/src/core/ugen_stk.cpp b/src/core/ugen_stk.cpp index dad68c84c..4889424bc 100644 --- a/src/core/ugen_stk.cpp +++ b/src/core/ugen_stk.cpp @@ -18360,7 +18360,9 @@ void WvIn :: openFile( const char *fileName, bool raw, bool doNormalize, bool ge SAMPLE * rawdata = NULL; t_CKUINT rawsize = 0; - if( strstr(fileName, "special:aah") ) { + if( strstr(fileName, "special:aaa") || + strstr(fileName, "special:aah") || + strstr(fileName, "special:ahh") ) { rawsize = ahh_size; rawdata = ahh_data; } else if( strstr(fileName, "special:britestk") ) { diff --git a/src/core/ugen_xxx.cpp b/src/core/ugen_xxx.cpp index 3eccde656..ca8bde671 100644 --- a/src/core/ugen_xxx.cpp +++ b/src/core/ugen_xxx.cpp @@ -3588,7 +3588,10 @@ CK_DLL_CTRL( sndbuf_ctrl_read ) if( strstr(filename, "special:sinewave") ) { rawsize = 1024; rawdata = NULL; } - else if( strstr(filename, "special:ahh") ) { + else if( strstr(filename, "special:aaa") || + strstr(filename, "special:aah") || + strstr(filename, "special:ahh") ) + { rawsize = ahh_size; rawdata = ahh_data; } else if( strstr(filename, "special:britestk") ) {