-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Codechange: Increase scrollbar length limit to 32bits #8006
Codechange: Increase scrollbar length limit to 32bits #8006
Conversation
There are 3 occurrences of |
f37d429
to
e3022c0
Compare
good catch, seems I'd missed quite a few |
462d4f2
to
77b52dc
Compare
77b52dc
to
50e6c94
Compare
50e6c94
to
9767467
Compare
9767467
to
f8d0365
Compare
f8d0365
to
800b469
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No longer crashes the game, tried a few windows, scrolling seems to work fine.
I am just there will be some window that doesn't work as we want or what-ever, but we will fix that when people report it :D
Shouldn't be merged yet, lots of size_t -> uint warnings on Windows. Going to have to readd a load of casts :( |
800b469
to
c879ecb
Compare
I've updated it to just increase the size, no fiddling around with type-signedness. ...Except for some reason changing it from |
c879ecb
to
b91758d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code has a lot of typecasting to stop the compiler complaining about signed/unsigned type ranges, but it's not actually range safe as far as I can tell. If the scrollbar isn't going to work properly with more than 2^31 elements in the list anyway, just make it use a plain signed int type and do some sanity checks against negative numbers in a few strategic locations.
@@ -731,7 +731,7 @@ struct SelectCompanyLiveryWindow : public Window { | |||
/* Position scrollbar to selected group */ | |||
for (uint i = 0; i < this->rows; i++) { | |||
if (this->groups[i]->index == sel) { | |||
this->vscroll->SetPosition(Clamp(i - this->vscroll->GetCapacity() / 2, 0, std::max(this->vscroll->GetCount() - this->vscroll->GetCapacity(), 0))); | |||
this->vscroll->SetPosition(Clamp(i - this->vscroll->GetCapacity() / 2, 0, std::max<int>(this->vscroll->GetCount() - this->vscroll->GetCapacity(), 0))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is really confusing. Actually I'm not sure why Scrollbar::SetPosition
assert-checks that the parameter is in range, instead of just clamping it into range itself. Letting the scrollbar handle that would make all the using code simpler, wouldn't it?
Also makes scrollbar internals properly use unsigned numbers. Bumped scrollbar limit to uint(32) as well, because why not
Fixes #7613