Skip to content
Snippets Groups Projects
Commit 16bf43e5 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Try this the other way...

parent 76ebd193
No related branches found
No related tags found
No related merge requests found
Pipeline #7250 passed
......@@ -361,8 +361,8 @@ sdl_get_bounds(int *w, int *h)
*h = r.h;
return true;
}
*w = ((uint64_t)r.w) * ABUw / pixelw;
*h = ((uint64_t)r.h) * ABUh / pixelh;
*w = ((uint64_t)r.w) * pixelw / ABUw;
*h = ((uint64_t)r.h) * pixelh / ABUh;
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment