[Decompilation] [th04/th05] Remove the Subpixel constructors

They just create unnecessary code when passing Subpixels by value to
functions.

Part of P0034, funded by zorg.
This commit is contained in:
nmlgc 2019-09-22 11:20:28 +02:00
parent 6cdd2296bb
commit 0b542125a5
1 changed files with 0 additions and 2 deletions

View File

@ -10,8 +10,6 @@ private:
int v;
public:
Subpixel() {}
Subpixel(float screen_v) { *this = screen_v; }
Subpixel& operator =(float screen_v) {
v = static_cast<int>(screen_v * 16.0f);