mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-16 18:30:32 +00:00
Avoid implicit sign cast.
This commit is contained in:
parent
4215edd11b
commit
c720f3910a
@ -230,7 +230,7 @@ struct Video {
|
|||||||
const Outputs::CRT::CRT &crt() const { return crt_; }
|
const Outputs::CRT::CRT &crt() const { return crt_; }
|
||||||
|
|
||||||
int clock_divider() const {
|
int clock_divider() const {
|
||||||
return clock_divider_;
|
return static_cast<int>(clock_divider_);
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user