Skip to content

Commit

Permalink
forgot one inline
Browse files Browse the repository at this point in the history
  • Loading branch information
SwareJonge authored and HeartPiece44 committed Sep 15, 2023
1 parent 43ce69d commit eb5ee7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/JSystem/JMath.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ struct TAsinAcosTable {

template <>
struct TAsinAcosTable<1024, f32> {
TAsinAcosTable()
TAsinAcosTable() { init(); }
void init()
{
for (int i = 0; i < 1024; i++) {
mTable[i] = asin(i / 1024.0);
Expand Down

0 comments on commit eb5ee7c

Please sign in to comment.