diff --git a/src/r_videoscale.cpp b/src/r_videoscale.cpp index f59f22b09..561ec3f79 100644 --- a/src/r_videoscale.cpp +++ b/src/r_videoscale.cpp @@ -188,8 +188,8 @@ bool ViewportIsScaled43() void R_ShowCurrentScaling() { - int x1 = screen->GetWidth(), y1 = screen->GetHeight(), x2 = int(x1 * vid_scalefactor), y2 = int(y1 * vid_scalefactor); - Printf("Current Scale: %f\n", (float)(vid_scalefactor)); + int x1 = screen->GetWidth(), y1 = screen->GetHeight(), x2 = ViewportScaledWidth(x1, y1), y2 = ViewportScaledHeight(x1, y1); + Printf("Current vid_scalefactor: %f\n", (float)(vid_scalefactor)); Printf("Real resolution: %i x %i\nEmulated resolution: %i x %i\n", x1, y1, x2, y2); }