Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memstuff #1164

Merged
merged 22 commits into from
May 1, 2022
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d389eda
Un-fake a couple of matches in memory manip functions
EllipticEllipsis Jan 17, 2022
14c1ea0
Document fmodf
EllipticEllipsis Jan 17, 2022
ddd272e
Un-fake a couple of matches in memory manip functions
EllipticEllipsis Jan 17, 2022
c4f3126
Document fmodf
EllipticEllipsis Jan 17, 2022
71c356f
Rename functions and files
EllipticEllipsis Feb 28, 2022
b1dcb3b
Document memmove, memsets, memcpys
EllipticEllipsis Feb 28, 2022
c160a55
Format
EllipticEllipsis Feb 28, 2022
97f7dad
Sort out some missing sizeofs
EllipticEllipsis Feb 28, 2022
e239738
Name fmodf
EllipticEllipsis Feb 28, 2022
46d2c8c
Rename local variables
EllipticEllipsis Mar 1, 2022
266ea99
Merge remote-tracking branch 'upstream/master' into memstuff
EllipticEllipsis Mar 1, 2022
6101e8c
size_t
EllipticEllipsis Mar 1, 2022
4a78ba0
Use COBRA_SHADOW_TEX_SIZE
EllipticEllipsis Mar 6, 2022
05cdded
Review
EllipticEllipsis Mar 9, 2022
3a78e96
Merge remote-tracking branch 'upstream/master' into memstuff
EllipticEllipsis Apr 18, 2022
b73d8e2
Merge remote-tracking branch 'upstream/master' into memstuff
EllipticEllipsis Apr 28, 2022
4119d5c
Merge branch 'memstuff' of github.com:EllipticEllipsis/oot into memstuff
EllipticEllipsis Apr 30, 2022
005ae65
Merge branch 'memstuff' of github.com:EllipticEllipsis/oot into memstuff
EllipticEllipsis Apr 30, 2022
25a21a2
Tweak the Doxyfile to remove @brief requirement
EllipticEllipsis May 1, 2022
9234dc4
Roman's review
EllipticEllipsis May 1, 2022
a2f952b
Fix a bug comment
EllipticEllipsis May 1, 2022
a2b3ff9
Change fmodf
EllipticEllipsis May 1, 2022
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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/master' into memstuff
  • Loading branch information
EllipticEllipsis committed Mar 1, 2022
commit 266ea99ffa8629592752cec75ec71c89e235c473
1 change: 1 addition & 0 deletions src/code/fmodf.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ f32 fmodf(f32 x, f32 y) {
return 0.0f;
}
n = x / y;

return x - (n * y);
}
You are viewing a condensed version of this merge commit. You can view the full changes here.