diff options
author | Mike Buland <eichlan@xagasoft.com> | 2016-09-02 12:08:30 -0600 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2016-09-02 12:08:30 -0600 |
commit | 30f966db3f4b01f06c0f43d98d24095de66af7b4 (patch) | |
tree | 09006b4bbe2c80f20aa3a3d4164e9cddda37a7cd | |
parent | a638f876f123cb9c9d3540ce7ff184c097162480 (diff) | |
download | lost-30f966db3f4b01f06c0f43d98d24095de66af7b4.tar.gz lost-30f966db3f4b01f06c0f43d98d24095de66af7b4.tar.bz2 lost-30f966db3f4b01f06c0f43d98d24095de66af7b4.tar.xz lost-30f966db3f4b01f06c0f43d98d24095de66af7b4.zip |
Switched from the NULL macro to 0, it's c++!
-rwxr-xr-x[-rw-r--r--] | build.sh | 0 | ||||
-rw-r--r-- | src/font.h | 2 |
2 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ public: | |||
16 | { | 16 | { |
17 | public: | 17 | public: |
18 | Glyph() : | 18 | Glyph() : |
19 | pData( NULL ) | 19 | pData( 0 ) |
20 | { } | 20 | { } |
21 | ~Glyph() | 21 | ~Glyph() |
22 | { delete[] pData; } | 22 | { delete[] pData; } |