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 EpochFlame committed Sep 15, 2023
1 parent 4588e95 commit 8598885
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 8598885

Please sign in to comment.