summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DisplayClass.cpp2
-rw-r--r--main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/DisplayClass.cpp b/DisplayClass.cpp
index 872b730..2a85cd2 100644
--- a/DisplayClass.cpp
+++ b/DisplayClass.cpp
@@ -35,7 +35,7 @@ void DisplayClass::renderScene(unsigned long delta, std::bitset<256>& keys) {
// static Temparray temp(20, x, y, z);
- static House house(20, x, y, z, 100, 400, 53.55, 0.82, 2.82, 0.0047, 40, 45, 1900, 3, 11500);
+ static House house(20, x, y, z, 100, 300, 53.55, 0.82, 2.82, 0.0047, 40, 45, 1900, 3, 11500);
triangles=house.getTriangles();
house.controller();
//// temp.calcTemp();
diff --git a/main.cpp b/main.cpp
index 9e79b61..062950c 100644
--- a/main.cpp
+++ b/main.cpp
@@ -240,7 +240,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine
ticks += delta;
- static DisplayClass render(5, 5, 5);
+ static DisplayClass render(5, 15, 5);
render.renderScene(delta, keys);
SwapBuffers(hDC);
}