The dev team will imho never replace it with an inferior one. They may go with the Marsalia twister or similar, but that was not yet available (2003 vs 1997).
In programming languages one tends not to adapt the prng
because it breaks code. That's also the reason Delphi kept its prng.
Prng's are not only used for encryption but also for e.g statistics. To test, one needs that given the same random seed the results are reproducable.
Which means the same algorithm, which means it is unlikely to be replaced.
So I don't think this will be changed any time soon.
In addition: strange encryption that relies on a particular random generation algorithm.
Here we use a prng to delelop and switch to a hwrng in production. A hwrng has no known seed and therefor no predicatble reproducability.
If your encryption algorithm relies on a particular impementation of the prng, you are plain stupid.

And defeats RVK's argument.
Note that hwrng's are now available on many processors: intel, but also Raspberry Pi (for which I have FPC code).