Should I be concerned about reading certain memory locations too often, such as a fast, long running loop that continuously checks a userdata memory location such as
for(;;)
{
MyVariable = *(float *) &persist.UserData[12];
//Some other magic happens here....
}
...causing premature failure of memory locations?
UserData read memory wear....?
Moderators: TomKerekes, dynomotion
- TomKerekes
- Posts: 2676
- Joined: Mon Dec 04, 2017 1:49 am