diff options
author | Hop311 <hop3114@gmail.com> | 2023-09-14 09:52:08 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-09-14 09:52:08 +0200 |
commit | 9dc8c3c89a86b8be2084890f3207adc6c9cda496 (patch) | |
tree | af5fcc9e7122813446318957a66da940d09b6f36 /extension/src/Utilities.hpp | |
parent | c715187bffa8c84428acf3631e3d03c088a719d9 (diff) |
Move province csv load to SIM + remove return_t
Diffstat (limited to 'extension/src/Utilities.hpp')
-rw-r--r-- | extension/src/Utilities.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/src/Utilities.hpp b/extension/src/Utilities.hpp index fedaa6b..afd65c0 100644 --- a/extension/src/Utilities.hpp +++ b/extension/src/Utilities.hpp @@ -2,9 +2,9 @@ #include <godot_cpp/classes/image.hpp> -#include "openvic/types/Colour.hpp" +#include "openvic-simulation/types/Colour.hpp" -#define ERR(x) ((x) == SUCCESS ? OK : FAILED) +#define ERR(x) ((x) ? OK : FAILED) namespace OpenVic { |