From a4e4dd55a5122bed526deca5fab6792806c11b26 Mon Sep 17 00:00:00 2001 From: dmayerich Date: Sat, 24 Aug 2013 14:59:17 -0500 Subject: [PATCH] fixed error in scaling parameter --- Win32/ricalc.exe | Bin 228864 -> 0 bytes main.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Win32/ricalc.exe b/Win32/ricalc.exe index 190942f..9c471c2 100644 Binary files a/Win32/ricalc.exe and b/Win32/ricalc.exe differ diff --git a/main.cpp b/main.cpp index 6df71dc..a643b27 100644 --- a/main.cpp +++ b/main.cpp @@ -58,7 +58,7 @@ int main(int argc, char* argv[]) { M.fromFile(vm["input-file"].as(), vm["input-format"].as(), - vm["scaling"].as()); + 1.0 / vm["scaling"].as()); } else { -- libgit2 0.21.4