diff options
| author | 2015-05-15 14:46:15 +0200 | |
|---|---|---|
| committer | 2015-05-15 14:46:15 +0200 | |
| commit | e66b5fac468c30498d85148554d76bbd221df9c5 (patch) | |
| tree | c0cf201edef5335847b342ba468524dc60185786 | |
| parent | dba610b6f1a31f8791fbc9baa6cf360bf62c72e9 (diff) | |
| download | OneRoll-e66b5fac468c30498d85148554d76bbd221df9c5.tar.gz OneRoll-e66b5fac468c30498d85148554d76bbd221df9c5.zip | |
display number as signed
| -rw-r--r-- | cli/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.cpp b/cli/main.cpp index f005cc3..f6197ce 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -59,7 +59,7 @@ QString diceToText(ExportedDiceResult& dice) for(int i =0; i < tmp.first.size(); ++i) { - quint64 dievalue = tmp.first[i]; + qint64 dievalue = tmp.first[i]; QString prefix("%1"); if(tmp.second) |