diff options
Diffstat (limited to 'ViewController.h')
-rw-r--r-- | ViewController.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ViewController.h b/ViewController.h index 9066d05..bccacd0 100644 --- a/ViewController.h +++ b/ViewController.h @@ -1,6 +1,6 @@ #pragma once -#include <tuple> +#include <utility> #include "Command.h" #include "KeyboardCode.h" @@ -44,6 +44,6 @@ private: unsigned int scale = 16; unsigned int line_width = 0; unsigned int artist_size = (scale - line_width) / 2; - std::tuple<float, float> mouse_pos = { 0, 0 }; + std::pair<float, float> mouse_pos = { 0, 0 }; }; |