fixed bug that caused rolled dice on the right of screen to be writ off-screen

pull/2623/head
Le~Kat 2023-02-24 23:59:41 -05:00
parent f2c900f8e1
commit fe010d949c
3 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
0.90: got most of the features done, lacking some polish and real-hardware testing
1.00: overhauled the whole app, made some margins larger to be easier to tap on
1.01: fixed bug that caused rolled dice on the right of screen to be writ off-screen

View File

@ -105,7 +105,7 @@ function rollDice() {
if (SELECTION_ARRAY [i] != 0) {
g.drawString ((" " + resultsArr [i]).slice (-3), 96, 10 + 40 * i);
g.drawString ((" " + resultsArr [i]).slice (-3), 96, 10 + 40 * (i - 4));
}
}
}

View File

@ -1,7 +1,7 @@
{ "id": "multidice",
"name": "multiple dice roller",
"shortName":"multidice",
"version":"1.00",
"version":"1.01",
"description": "roll anywhere from 1-8 dice at the same time",
"icon": "app.png",
"tags": "tool,game",