DroidFish: Updates for NDK version r15c.

The minimum required android version had to be changed to 4.0.1.
This commit is contained in:
Peter Osterlund
2017-09-10 12:01:07 +02:00
parent 3536c6290a
commit 4b6418cb02
13 changed files with 24 additions and 33 deletions

View File

@@ -112,7 +112,7 @@ Option::Option(OnChange f) : type("button"), min(0), max(0), on_change(f)
{}
Option::Option(int v, int minv, int maxv, OnChange f) : type("spin"), min(minv), max(maxv), on_change(f)
{ defaultValue = currentValue = to_string(v); }
{ defaultValue = currentValue = std::to_string(v); }
Option::operator int() const {
assert(type == "check" || type == "spin");