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