From f006214af68ca015794e4ba1b81ce18d85a0c315 Mon Sep 17 00:00:00 2001 From: Daniel Seiller Date: Wed, 4 Dec 2019 00:45:15 +0100 Subject: [PATCH] small formatting change in D3D8_VMT generator --- ScrapHacks/src/make_D3D8_VMT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ScrapHacks/src/make_D3D8_VMT.py b/ScrapHacks/src/make_D3D8_VMT.py index bb320a0..0fe87c4 100644 --- a/ScrapHacks/src/make_D3D8_VMT.py +++ b/ScrapHacks/src/make_D3D8_VMT.py @@ -27,5 +27,5 @@ with open(outfile,"w") as ofh: for name in sorted(VMTs.keys()): print(f"namespace {name} {{",file=ofh) for method,idx in sorted(VMTs[name].items(),key=lambda v:v[1]): - print(f"\tconst size_t m_{method} = {idx};",file=ofh) + print(f" const size_t m_{method} = {idx};",file=ofh) print("}",file=ofh) \ No newline at end of file