mirror of
https://github.com/echojc/osu-ds.git
synced 2025-06-19 01:15:44 -04:00

Removed the arm7 section Changed the makefile to only use the arm9 stuff Epicpkmn: Fix source/Graphics/GraphicsManager.cpp Co-Authored-By: Pk11 <epicpkmn11@outlook.com> Co-Authored-By: Kaisaan <34224128+Kaisaan@users.noreply.github.com>
12 lines
172 B
C++
12 lines
172 B
C++
#include "MathHelper.h"
|
|
|
|
u16 MathHelper::mSeed = 3246;
|
|
|
|
u16 MathHelper::Random(u16 min, u16 max)
|
|
{
|
|
mSeed= 1664525*mSeed+1013904223;
|
|
return (mSeed % (max-min) + min);
|
|
}
|
|
|
|
|