Skip to content

Commit

Permalink
keypadに2000000000より大きい数値を入力できるようにする
Browse files Browse the repository at this point in the history
  • Loading branch information
nanovna committed Jun 26, 2020
1 parent cbc5fd3 commit e4fecad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ float my_atof(const char *p)
neg = TRUE;
if (*p == '-' || *p == '+')
p++;
float x = atoi(p);
float x = atoll(p);
while (isdigit((int)*p))
p++;
if (*p == '.') {
Expand Down

1 comment on commit e4fecad

@douardda
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be nice to write commit messages in english (FTR, english is not my mother tongue either)

Please sign in to comment.