mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-10-30 10:06:57 +00:00 
			
		
		
		
	Fix defines proxy not being able to process parameters with underscores
This commit is contained in:
		| @@ -70,7 +70,7 @@ void DefinesStreamProxy::Define::IdentifyParameters(const std::vector<std::strin | ||||
|     for (auto i = 0u; i < m_value.size(); i++) | ||||
|     { | ||||
|         const auto c = m_value[i]; | ||||
|         if (!isalnum(c)) | ||||
|         if (!isalnum(c) && c != '_') | ||||
|         { | ||||
|             if (inWord) | ||||
|             { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user