changed to long long for windows

This commit is contained in:
TraYali 2024-03-20 16:39:25 +01:00
parent 170c141576
commit 2cb7e67df8
8 changed files with 17 additions and 17 deletions

View file

@ -24,7 +24,7 @@ class PortParameter {
enum PortParameterValueType { Int, Float };
union PortParameterValue {
long i;
long long i;
float f;
};