From 26a4417a5f5c80054ddb10075da8e320ce714e34 Mon Sep 17 00:00:00 2001 From: Bart Trzynadlowski Date: Mon, 27 Mar 2017 03:13:34 +0000 Subject: [PATCH] Cosmetic: renamed step to stepping --- Src/Graphics/IRender3D.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Graphics/IRender3D.h b/Src/Graphics/IRender3D.h index a7dea3a..b76e51b 100644 --- a/Src/Graphics/IRender3D.h +++ b/Src/Graphics/IRender3D.h @@ -16,7 +16,7 @@ public: virtual void EndFrame(void) = 0; virtual void UploadTextures(unsigned level, unsigned x, unsigned y, unsigned width, unsigned height) = 0; virtual void AttachMemory(const uint32_t *cullingRAMLoPtr, const uint32_t *cullingRAMHiPtr, const uint32_t *polyRAMPtr, const uint32_t *vromPtr, const uint16_t *textureRAMPtr) = 0; - virtual void SetStep(int stepID) = 0; + virtual void SetStepping(int stepping) = 0; virtual bool Init(unsigned xOffset, unsigned yOffset, unsigned xRes, unsigned yRes, unsigned totalXRes, unsigned totalYRes) = 0; virtual ~IRender3D()