about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--App/Version.h2
-rw-r--r--Source/Memory.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/App/Version.h b/App/Version.h index 12ae33b..0f75ec6 100644 --- a/App/Version.h +++ b/App/Version.h
@@ -4,7 +4,7 @@
4#define TO_STRING(s) TO_STRING2(s) 4#define TO_STRING(s) TO_STRING2(s)
5 5
6#define MAJOR 0 6#define MAJOR 0
7#define MINOR 2 7#define MINOR 3
8#define PATCH 0 8#define PATCH 0
9 9
10#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH) 10#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH)
diff --git a/Source/Memory.h b/Source/Memory.h index 601b233..e093960 100644 --- a/Source/Memory.h +++ b/Source/Memory.h
@@ -91,7 +91,6 @@ public:
91 return ReadData<T>({ GLOBALS, 0x18, panel * 8, offset }, size); 91 return ReadData<T>({ GLOBALS, 0x18, panel * 8, offset }, size);
92 } 92 }
93 93
94 static int GLOBALS;
95private: 94private:
96 template<class T> 95 template<class T>
97 std::vector<T> ReadData(const std::vector<int>& offsets, size_t numItems) { 96 std::vector<T> ReadData(const std::vector<int>& offsets, size_t numItems) {