1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-28 23:48:30 +02:00

Add a blank line to the end of is_number()

This is to be consistent with is_positive_num().
This commit is contained in:
Misa 2021-02-11 17:16:54 -08:00 committed by Ethan Lee
parent 4a853fec97
commit 28caa994e9

View File

@ -279,6 +279,7 @@ bool is_number(const char* str)
return false; return false;
} }
} }
return true; return true;
} }