Rename x86 -> software

This commit is contained in:
Luke Benstead 2021-04-06 11:49:13 +01:00
parent cd4a7e0cf0
commit f02b1ee894
4 changed files with 3 additions and 3 deletions

View File

@ -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})

View File

@ -267,5 +267,5 @@ void SceneFinish();
#ifdef __DREAMCAST__
#include "platforms/sh4.h"
#else
#include "platforms/x86.h"
#include "platforms/software.h"
#endif

View File

@ -4,7 +4,7 @@
#include <string.h>
#include "../platform.h"
#include "x86.h"
#include "software.h"
static size_t AVAILABLE_VRAM = 16 * 1024 * 1024;
static Matrix4x4 MATRIX;