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

Add a blank line to the end of is_positive_num()

The return statement is too close to the block above it, so I want to
space it out for aesthetics.
This commit is contained in:
Misa 2021-02-11 16:47:40 -08:00 committed by Ethan Lee
parent 30b0fc828f
commit 4a853fec97

View File

@ -313,6 +313,7 @@ bool is_positive_num(const char* str, const bool hex)
}
}
}
return true;
}