Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ namespace std
float acosf(float x);
float expf(float x);
float floorf(float x);
float logf(float x);
float sqrtf(float x);
#else
inline float atan2f(float y, float x)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ double asin(double);
double acos(double);
double exp(double);
double floor(double);
double log(double);
double sqrt(double);

#ifdef __cplusplus
}
#endif

#endif
#endif
2 changes: 1 addition & 1 deletion src/SB/Core/gc/iFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct file_queue_entry
U32 asynckey;
};

extern file_queue_entry file_queue[4];
file_queue_entry file_queue[4];

static U32 tbuffer[1024 + 8];
static U32* buffer32;
Expand Down
Loading