mirror of
https://github.com/openshwprojects/OpenBK7231T_App.git
synced 2026-03-09 00:37:59 +01:00
tokenizer should also use expressions on windows
This commit is contained in:
@@ -87,7 +87,7 @@ int Tokenizer_GetArgInteger(int i) {
|
||||
sscanf(s, "%x", &ret);
|
||||
return ret;
|
||||
}
|
||||
#if !PLATFORM_BEKEN
|
||||
#if (!PLATFORM_BEKEN && !WINDOWS)
|
||||
if(g_bAllowExpand && s[0] == '$') {
|
||||
// constant
|
||||
int channelIndex;
|
||||
@@ -115,7 +115,7 @@ float Tokenizer_GetArgFloat(int i) {
|
||||
#endif
|
||||
const char *s;
|
||||
s = g_args[i];
|
||||
#if !PLATFORM_BEKEN
|
||||
#if (!PLATFORM_BEKEN && !WINDOWS)
|
||||
if(g_bAllowExpand && s[0] == '$') {
|
||||
// constant
|
||||
if(s[1] == 'C' && s[2] == 'H') {
|
||||
|
||||
Reference in New Issue
Block a user