mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-12-14 12:09:36 +00:00
Remove unused functions
This commit is contained in:
@@ -78,25 +78,6 @@ long RandomLong (long range)
|
||||
return (rawResultHi);
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------- InitRandomLongQUS
|
||||
|
||||
// Initializes random seed for quick & dirty long random number function (below).
|
||||
|
||||
void InitRandomLongQUS (void)
|
||||
{
|
||||
GetDateTime(&theSeed);
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------- RandomLongQUS
|
||||
|
||||
// Very simple (but fast) pseudo-random number generator.
|
||||
|
||||
UInt32 RandomLongQUS (void)
|
||||
{
|
||||
theSeed = theSeed * 1103515245 + 12345;
|
||||
return (theSeed);
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------- RedAlert
|
||||
|
||||
// Called when we must quit app. Brings up a dialog informing user<65>
|
||||
|
||||
Reference in New Issue
Block a user