From ec0fbfacefdab3a4271324197df48ac212e58126 Mon Sep 17 00:00:00 2001 From: IvanPragma Date: Thu, 28 Oct 2021 19:41:37 +0500 Subject: [PATCH] Update python_methods_graphics.cc --- src/ballistica/python/methods/python_methods_graphics.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ballistica/python/methods/python_methods_graphics.cc b/src/ballistica/python/methods/python_methods_graphics.cc index 8dce1c4e..0296ff6b 100644 --- a/src/ballistica/python/methods/python_methods_graphics.cc +++ b/src/ballistica/python/methods/python_methods_graphics.cc @@ -1,9 +1,9 @@ // Released under the MIT License. See LICENSE for details. #include "ballistica/python/methods/python_methods_graphics.h" -#include "ballistica/graphics/camera.h" #include "ballistica/game/game.h" +#include "ballistica/graphics/camera.h" #include "ballistica/graphics/graphics.h" #include "ballistica/graphics/text/text_graphics.h" #include "ballistica/platform/platform.h" @@ -68,9 +68,9 @@ auto PySetCameraTarget(PyObject* self, PyObject* args, PyObject* keywds) float x = 0.0f; float y = 0.0f; float z = 0.0f; - static const char* kwlist[] = { "x", "y", "z", nullptr }; + static const char* kwlist[] = {"x", "y", "z", nullptr}; if (!PyArg_ParseTupleAndKeywords(args, keywds, "fff", - const_cast(kwlist), &x, &y, &z)) { + const_cast(kwlist), &x, &y, &z)) { return nullptr; } assert(g_game);