From f02b1ee894db13b9d7a75a457de7c78e8f2c30d4 Mon Sep 17 00:00:00 2001 From: Luke Benstead Date: Tue, 6 Apr 2021 11:49:13 +0100 Subject: [PATCH] Rename x86 -> software --- CMakeLists.txt | 2 +- GL/platform.h | 2 +- GL/platforms/{x86.c => software.c} | 2 +- GL/platforms/{x86.h => software.h} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename GL/platforms/{x86.c => software.c} (98%) rename GL/platforms/{x86.h => software.h} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe7d9cd..332348a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -33,7 +33,7 @@ else() find_package(SDL2 REQUIRED) include_directories(${SDL2_INCLUDE_DIRS}) link_libraries(${SDL2_LIBRARIES}) -set(SOURCES ${SOURCES} GL/platforms/x86.c) +set(SOURCES ${SOURCES} GL/platforms/software.c) endif() add_library(GLdc ${SOURCES}) diff --git a/GL/platform.h b/GL/platform.h index 08afb82..10b03e3 100644 --- a/GL/platform.h +++ b/GL/platform.h @@ -267,5 +267,5 @@ void SceneFinish(); #ifdef __DREAMCAST__ #include "platforms/sh4.h" #else -#include "platforms/x86.h" +#include "platforms/software.h" #endif diff --git a/GL/platforms/x86.c b/GL/platforms/software.c similarity index 98% rename from GL/platforms/x86.c rename to GL/platforms/software.c index 7ae658a..9620a71 100644 --- a/GL/platforms/x86.c +++ b/GL/platforms/software.c @@ -4,7 +4,7 @@ #include #include "../platform.h" -#include "x86.h" +#include "software.h" static size_t AVAILABLE_VRAM = 16 * 1024 * 1024; static Matrix4x4 MATRIX; diff --git a/GL/platforms/x86.h b/GL/platforms/software.h similarity index 100% rename from GL/platforms/x86.h rename to GL/platforms/software.h