diff options
author | John Fultz <jfultz@wolfram.com> | 2023-07-19 18:07:39 -0500 |
---|---|---|
committer | John Fultz <jfultz@wolfram.com> | 2023-07-19 22:38:25 -0500 |
commit | d302abb430f5cb75e7373197c91e269fdbaf2e61 (patch) | |
tree | 0f52f3cfa5feff989603d81c1c8b4af147cf08cb /quacker/letterbox.h | |
parent | 490072ac8b3de65f3ad6f00d9d6de9d64b049823 (diff) |
Fix integer size compiler warnings.
Diffstat (limited to 'quacker/letterbox.h')
-rw-r--r-- | quacker/letterbox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quacker/letterbox.h b/quacker/letterbox.h index c340f1d..703b1be 100644 --- a/quacker/letterbox.h +++ b/quacker/letterbox.h @@ -41,7 +41,7 @@ public: WordResult(QString w); void resetStats(); QString word; - int time; + qint64 time; bool missed; int keystrokes; }; |