From 8c79f6f41717c0e1b97fef2d18fb2a395e87e9a6 Mon Sep 17 00:00:00 2001 From: Godzil Date: Tue, 11 Feb 2020 00:53:32 +0000 Subject: [PATCH] Clang should be happy now? --- source/emulate.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/emulate.cpp b/source/emulate.cpp index 1d57121..30f46f6 100644 --- a/source/emulate.cpp +++ b/source/emulate.cpp @@ -263,8 +263,8 @@ static void read_keys() //////////////////////////////////////////////////////////////////////////////// static void ws_drawDoubledScanline(int16_t *vs, int16_t *backbuffer_alias) { - register int32_t *vs_alias = (int32_t *)vs; - register int32_t data; + int32_t *vs_alias = (int32_t *)vs; + int32_t data; for (int pixel = 0 ; pixel < 224 ; pixel += 8) { @@ -308,8 +308,8 @@ static void ws_drawDoubledScanline(int16_t *vs, int16_t *backbuffer_alias) //////////////////////////////////////////////////////////////////////////////// static void ws_drawDoubledRotatedScanline(int16_t *vs, int16_t *backbuffer_alias) { - register int32_t *vs_alias = (int32_t *)vs; - register int32_t data; + int32_t *vs_alias = (int32_t *)vs; + int32_t data; for (int pixel = 0 ; pixel < 144 ; pixel += 8) {