mirror of
https://github.com/exoticorn/microw8.git
synced 2026-01-20 19:26:43 +01:00
fix square filter, arrow keys on windows
This commit is contained in:
@@ -32,7 +32,7 @@ fn aa_tex_coord(c: f32) -> f32 {
|
||||
let center = base + 0.5;
|
||||
let next = base + 1.0;
|
||||
if high > next {
|
||||
return center + (high - next) / (high - base);
|
||||
return center + (high - next) / (high - low);
|
||||
} else {
|
||||
return center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user